jsonld-ex/.github/workflows/ci.yml

72 lines
1.7 KiB
YAML
Raw Normal View History

2020-10-13 16:44:29 +02:00
name: CI
on:
pull_request:
2021-11-22 21:48:06 +01:00
push:
branches:
- master
2020-10-13 16:44:29 +02:00
jobs:
test:
2021-11-22 21:48:06 +01:00
runs-on: ubuntu-18.04
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2020-10-13 16:44:29 +02:00
strategy:
fail-fast: false
matrix:
2021-11-22 21:48:06 +01:00
include:
- pair:
elixir: 1.10.4
otp: 21.3
- pair:
elixir: 1.11.3
otp: 22.2
- pair:
elixir: 1.12.3
2022-01-21 20:34:12 +01:00
otp: 24.1.3
- pair:
elixir: 1.13.2
2021-11-22 21:48:06 +01:00
otp: 23.2.5
- pair:
2022-01-21 20:34:12 +01:00
elixir: 1.13.2
2021-11-22 21:48:06 +01:00
otp: 24.1.3
lint: lint
2020-10-13 16:44:29 +02:00
steps:
- uses: actions/checkout@v2
2021-11-22 21:48:06 +01:00
- uses: erlef/setup-elixir@v1
2020-10-13 16:44:29 +02:00
with:
2021-11-22 21:48:06 +01:00
otp-version: ${{matrix.pair.otp}}
2020-10-13 16:44:29 +02:00
elixir-version: ${{matrix.pair.elixir}}
2021-11-22 21:48:06 +01:00
- name: Install Dependencies
run: mix deps.get
- run: mix format --check-formatted
if: ${{ matrix.lint }}
- run: mix deps.get && mix deps.unlock --check-unused
if: ${{ matrix.lint }}
- run: mix deps.compile
2022-01-21 20:34:12 +01:00
2021-12-13 12:47:17 +01:00
- run: mix compile --warnings-as-errors
if: ${{ matrix.lint }}
2021-11-22 21:48:06 +01:00
- run: MIX_ENV=test mix coveralls.github
2020-10-13 16:44:29 +02:00
- name: Retrieve PLT Cache
uses: actions/cache@v1
id: plt-cache
with:
path: priv/plts
2021-11-22 21:48:06 +01:00
key: ${{ runner.os }}-${{ matrix.pair.otp }}-${{ matrix.pair.elixir }}-plts-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }}
2020-10-13 16:44:29 +02:00
- name: Create PLTs
if: steps.plt-cache.outputs.cache-hit != 'true'
run: |
mkdir -p priv/plts
mix dialyzer --plt
- name: Run dialyzer
run: mix dialyzer --no-check