Test commit 9dcf564f845269ae64a01c4eae156657d32a2977 #54
Workflow file for this run
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: Continuous Integration | |
on: | |
push: | |
run-name: Test commit ${{ github.sha }} | |
env: | |
MIX_ENV: test | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: isbang/compose-action@v2.0.1 | |
with: | |
compose-file: "./docker-compose.test.yaml" | |
- name: Set up Elixir | |
uses: erlef/setup-beam@v1 | |
with: | |
otp-version: 27.1 | |
elixir-version: 1.17.3 | |
- name: Elixir Test | |
run: | | |
mix deps.clean --all | |
mix clean | |
mix deps.get | |
mix compile | |
mix format --check-formatted | |
mix test |