SYB 018/upgrade to 1.15.7 #84
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: Sibyl | CI checks | |
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
concurrency: | |
group: ci-${{github.ref}} | |
cancel-in-progress: true | |
jobs: | |
lint-and-test: | |
runs-on: ubuntu-latest | |
name: OTP ${{matrix.otp}} / Elixir ${{matrix.elixir}} | |
strategy: | |
matrix: | |
otp: ["24.2", "26.1"] | |
elixir: ["1.12.3", "1.15.7"] | |
# Not sure how best to tell the matrix about min-OTP versions | |
exclude: | |
- otp: "26.1" | |
elixir: "1.12.3" | |
- otp: "24.2" | |
elixir: "1.15.7" | |
steps: | |
- name: Checkout Github repo | |
uses: actions/[email protected] | |
- name: Setup BEAM Env | |
uses: erlef/[email protected] | |
with: | |
otp-version: ${{matrix.otp}} | |
elixir-version: ${{matrix.elixir}} | |
- name: Setup Cache | |
uses: actions/[email protected] | |
id: mix-cache | |
with: | |
path: | | |
deps | |
_build | |
priv/plts | |
key: ${{ hashFiles('mix.lock') }}-${{ env.ELIXIR_VERSION }}-${{ env.OTP_VERSION }} | |
- if: steps.mix-cache.outputs.cache-hit != 'true' | |
run: mkdir -p priv/plts; mix deps.get; mix deps.compile | |
- run: mix lint | |
- run: mix test |