Merge pull request #5 from ndrluis/fix-auth-tabular #16
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
env: | |
otp: "25.0" | |
elixir: "1.16.2" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install Erlang & Elixir | |
uses: erlef/setup-beam@v1 | |
with: | |
otp-version: ${{ env.otp }} | |
elixir-version: ${{ env.elixir }} | |
- uses: hoverkraft-tech/[email protected] | |
with: | |
compose-file: "./docker-compose.yml" | |
down-flags: "--remove-orphans" | |
up-flags: "--no-start" | |
- name: Install dependencies | |
run: mix deps.get | |
- name: Check formatting | |
run: mix format --check-formatted | |
- name: Check unused deps | |
run: mix deps.unlock --check-unused | |
- name: Check warnings | |
run: mix compile --warnings-as-errors | |
- name: Run tests | |
run: mix test | |
- name: Run integration tests | |
run: | | |
docker compose up -d | |
mix test.integration | |
docker compose down --remove-orphans | |
- name: Run Tabular tests | |
env: | |
TABULAR_CREDENTIAL: ${{ secrets.TABULAR_CREDENTIAL }} | |
run: | | |
mix test.tabular |