Skip to content

Test commit 4c2dc1785ea02fe0786da1f71a051f4e419f576d #82

Test commit 4c2dc1785ea02fe0786da1f71a051f4e419f576d

Test commit 4c2dc1785ea02fe0786da1f71a051f4e419f576d #82

Workflow file for this run

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
- 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 tc