Skip to content

Bump dialyxir from 1.3.0 to 1.4.3 #233

Bump dialyxir from 1.3.0 to 1.4.3

Bump dialyxir from 1.3.0 to 1.4.3 #233

Workflow file for this run

name: on-push
on: [push]
env:
MIX_ENV: test
jobs:
build:
runs-on: ubuntu-20.04
strategy:
matrix:
otp: ["23.3.4.6"]
elixir: ["1.10.4", "1.13.4"]
steps:
- uses: actions/checkout@v2
name: "Checkout"
- uses: erlef/setup-beam@v1
name: "Setup Elixir"
with:
otp-version: ${{matrix.otp}}
elixir-version: ${{matrix.elixir}}
version-type: strict
- uses: rrainn/[email protected]
- run: mix deps.get
- run: mix compile
- run: mix format --check-formatted
if: matrix.elixir == '1.13.4' # Only check formatting with the latest version
- run: mix dialyzer
if: matrix.elixir == '1.13.4' # Only check dialyzer with latest version
- run: mix test