ci: continue testing against swoosh 1.16 after update to 1.17 #92
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: | |
pull_request: | |
push: | |
jobs: | |
main: | |
runs-on: ubuntu-22.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- elixir: '1.17' | |
erlang: '27.0' | |
lint: true | |
- elixir: '1.16' | |
erlang: '26.2.5' | |
blend: swoosh_1_16 | |
- elixir: '1.15' | |
erlang: '25.3.2.13' | |
blend: swoosh_1_15 | |
- elixir: '1.15' | |
erlang: '25.3.2.13' | |
blend: swoosh_1_14 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/cache@v4 | |
if: ${{ ! matrix.lint }} | |
with: | |
path: | | |
_build | |
deps | |
key: ${{ runner.os }}-${{ matrix.elixir }}-${{ matrix.erlang }}-${{ hashFiles('mix.lock') }} | |
- uses: erlef/setup-beam@v1 | |
with: | |
otp-version: ${{ matrix.erlang }} | |
elixir-version: ${{ matrix.elixir }} | |
- run: cp blend/${{ matrix.blend }}.mix.lock mix.lock | |
if: ${{ matrix.blend }} | |
- run: mix deps.get --check-locked | |
- run: mix format --check-formatted | |
if: ${{ matrix.lint }} | |
- run: mix deps.unlock --check-unused | |
if: ${{ matrix.lint }} | |
- run: mix compile --warnings-as-errors | |
- run: mix test |