Fix dialyxir by using default ignore file name #64
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
on: | |
- push | |
- pull_request | |
jobs: | |
unit_tests: | |
name: Unit Tests | |
runs-on: ubuntu-22.04 | |
env: | |
MIX_ENV: test | |
steps: | |
- name: Set up Elixir | |
uses: erlef/setup-beam@v1 | |
with: | |
otp-version: "26.0.2" | |
elixir-version: "1.15.4" | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Get dependencies | |
run: mix deps.get --only test | |
- name: Compile | |
run: mix compile | |
- name: Run unit tests | |
run: mix test | |
type_check: | |
name: Type Check | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Set up Elixir | |
uses: erlef/setup-beam@v1 | |
with: | |
otp-version: "26.0.2" | |
elixir-version: "1.15.4" | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Get dependencies | |
run: mix deps.get --only dev | |
- name: Restore PLTs | |
uses: actions/cache@v1 | |
with: | |
path: _build/dev/plt | |
key: plt-${{ github.ref }}-${{ github.sha }} | |
restore-keys: | | |
plt-${{ github.ref }}-${{ github.sha }} | |
plt-${{ github.ref }}- | |
plt-refs/heads/master- | |
- name: Compile | |
run: mix compile | |
- name: Run dialyzer | |
run: mix dialyzer |