Compare commits
No commits in common. "ci" and "main" have entirely different histories.
34
.drone.yml
34
.drone.yml
@ -1,34 +0,0 @@
|
||||
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
19
.github/workflows/workflow.yml
vendored
@ -1,19 +0,0 @@
|
||||
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,
|
||||
username: "postgres",
|
||||
password: "postgres",
|
||||
hostname: if(System.get_env("CI") == "true", do: "postgres", else: "localhost"),
|
||||
hostname: "localhost",
|
||||
database: "tradex_test#{System.get_env("MIX_TEST_PARTITION")}",
|
||||
pool: Ecto.Adapters.SQL.Sandbox,
|
||||
# We don't run a server during test. If one is required,
|
||||
|
Loading…
x
Reference in New Issue
Block a user