Skip to content

add DB to workflow

add DB to workflow #3

Workflow file for this run

name: Elixir CI

Check failure on line 1 in .github/workflows/elixir.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/elixir.yml

Invalid workflow file

No steps defined in `steps` and no workflow called in `uses` for the following jobs: services
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
merge_group:
types: [checks_requested]
permissions:
contents: read
jobs:
services:
postgres:
image: postgres:11
ports: ['5432:5432']
env:
POSTGRES_HOST_AUTH_METHOD: trust
options: --health-cmd pg_isready --health-interval 10s --health-timeout 10s --health-retries 5
build:
name: Build and test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Elixir v1.16 OTP26
uses: erlef/setup-beam@v1
with:
elixir-version: "1.16.X" # Define the elixir version [required]
otp-version: "26.X" # Define the OTP version [required]
- name: Install dependencies
run: mix deps.get
- name: Run tests
env:
DATABASE_HOST: postgres
# POSTGRES_PORT: ${{ job.services.postgres.ports[5432] }}
MIX_ENV: test
run: mix test
- name: Set up Elixir v1.17 OTP26
uses: erlef/setup-beam@v1
with:
elixir-version: "1.17.X" # Define the elixir version [required]
otp-version: "26.X" # Define the OTP version [required]
- name: Install dependencies
run: mix deps.get
- name: Run tests
env:
DATABASE_HOST: postgres
# POSTGRES_PORT: ${{ job.services.postgres.ports[5432] }}
MIX_ENV: test
run: mix test
- name: Set up Elixir v1.17 OTP27
uses: erlef/setup-beam@v1
with:
elixir-version: "1.17.X" # Define the elixir version [required]
otp-version: "27.X" # Define the OTP version [required]
- name: Install dependencies
run: mix deps.get
- name: Run tests
env:
DATABASE_HOST: postgres
# POSTGRES_PORT: ${{ job.services.postgres.ports[5432] }}
MIX_ENV: test
run: mix test