Compare commits
6 Commits
Author | SHA1 | Date | |
---|---|---|---|
7cc499085f | |||
4af59ed652 | |||
d9e08021e8 | |||
ab593ebf1a | |||
5a0f2160dc | |||
d7d4bfb2f1 |
34
.drone.yml
Normal file
34
.drone.yml
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
kind: pipeline
|
||||||
|
type: docker
|
||||||
|
name: default
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: install
|
||||||
|
image: elixir:1.18
|
||||||
|
volumes:
|
||||||
|
- name: mix
|
||||||
|
path: /root/.mix
|
||||||
|
commands:
|
||||||
|
- mix local.rebar --force
|
||||||
|
- mix local.hex --force
|
||||||
|
- mix deps.get
|
||||||
|
|
||||||
|
- name: test
|
||||||
|
image: elixir:1.18
|
||||||
|
volumes:
|
||||||
|
- name: mix
|
||||||
|
path: /root/.mix
|
||||||
|
commands:
|
||||||
|
- mix test
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
- name: mix
|
||||||
|
temp: {}
|
||||||
|
|
||||||
|
services:
|
||||||
|
- name: postgres
|
||||||
|
image: postgres:17.2-alpine
|
||||||
|
environment:
|
||||||
|
POSTGRES_USER: postgres
|
||||||
|
POSTGRES_PASSWORD: postgres
|
||||||
|
POSTGRES_DB: tradex_test
|
19
.github/workflows/workflow.yml
vendored
Normal file
19
.github/workflows/workflow.yml
vendored
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
name: Gitea Actions Demo
|
||||||
|
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
|
||||||
|
on: [push]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
Explore-Gitea-Actions:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- run: echo "🎉 The job was automatically triggered by a ${{ gitea.event_name }} event."
|
||||||
|
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by Gitea!"
|
||||||
|
- run: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}."
|
||||||
|
- name: Check out repository code
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
- run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner."
|
||||||
|
- run: echo "🖥️ The workflow is now ready to test your code on the runner."
|
||||||
|
- name: List files in the repository
|
||||||
|
run: |
|
||||||
|
ls ${{ gitea.workspace }}
|
||||||
|
- run: echo "🍏 This job's status is ${{ job.status }}."
|
@ -29,7 +29,7 @@ config :tradex, Tradex.Mailer, adapter: Swoosh.Adapters.Test
|
|||||||
config :tradex, Tradex.Repo,
|
config :tradex, Tradex.Repo,
|
||||||
username: "postgres",
|
username: "postgres",
|
||||||
password: "postgres",
|
password: "postgres",
|
||||||
hostname: "localhost",
|
hostname: if(System.get_env("CI") == "true", do: "postgres", else: "localhost"),
|
||||||
database: "tradex_test#{System.get_env("MIX_TEST_PARTITION")}",
|
database: "tradex_test#{System.get_env("MIX_TEST_PARTITION")}",
|
||||||
pool: Ecto.Adapters.SQL.Sandbox,
|
pool: Ecto.Adapters.SQL.Sandbox,
|
||||||
# We don't run a server during test. If one is required,
|
# We don't run a server during test. If one is required,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user