Dialyzer #856
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: Dialyzer | |
on: | |
schedule: | |
- cron: "30 1 * * *" | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
env: | |
MIX_ENV: ci | |
name: OTP ${{matrix.pair.otp}} / Elixir ${{matrix.pair.elixir}} | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- pair: | |
otp: 26.2 | |
elixir: 1.16 | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: erlef/setup-elixir@v1 | |
with: | |
otp-version: ${{matrix.pair.otp}} | |
elixir-version: ${{matrix.pair.elixir}} | |
- name: "Compile everything" | |
run: | | |
mix local.rebar --force | |
mix local.hex --force | |
mix do deps.get, compile | |
mix compile | |
- name: "Run quality tests" | |
run: mix quality.ci |