Refactor CI workflow #7
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: CI | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: ["main"] | |
workflow_dispatch: | |
env: | |
MIX_ENV: test | |
jobs: | |
test_macos: | |
name: OTP ${{ matrix.otp }} (macOS) | |
runs-on: macos-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
otp: ["erlang@24", "erlang"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Erlang and Elixir with Homebrew | |
run: | | |
brew install ${{ matrix.otp }} | |
mix local.hex --force | |
- run: mix format --check-formatted | |
- run: mix test | |
test_ubuntu: | |
name: Elixir ${{ matrix.pair.elixir }} OTP ${{ matrix.pair.otp }} (Ubuntu) | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
pair: | |
- elixir: "1.13" | |
otp: "24.3.4.10" | |
- elixir: "1.17" | |
otp: "27.0.1" | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: CargoSense/setup-elixir-project@v1 | |
with: | |
otp-version: ${{ matrix.pair.otp }} | |
elixir-version: ${{ matrix.pair.elixir }} | |
build-flags: "--warnings-as-errors" | |
- run: mix format --check-formatted | |
- run: mix test |