Merge pull request #105 from malomohq/dependabot/hex/master/jason-1.4.4 #249
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: ci | |
on: push | |
jobs: | |
dialyzer: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/cache@v4 | |
with: | |
key: ${{ github.job }}-${{ matrix.elixir }}-${{ matrix.otp }}-${{ hashFiles('mix.lock') }}-1 | |
path: _build | |
- uses: erlef/setup-beam@v1 | |
with: | |
elixir-version: ${{ matrix.elixir }} | |
otp-version: ${{ matrix.otp }} | |
- run: mix deps.get | |
- run: mix dialyzer | |
strategy: | |
matrix: | |
elixir: | |
- 1.12.x | |
- 1.13.x | |
- 1.14.x | |
exclude: | |
- elixir: 1.12.x | |
otp: 25.x | |
- elixir: 1.13.x | |
otp: 25.x | |
otp: | |
- 24.x | |
- 25.x | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/cache@v4 | |
with: | |
key: ${{ github.job }}-${{ matrix.elixir }}-${{ matrix.otp }}-${{ hashFiles('mix.lock') }}-1 | |
path: _build | |
- uses: erlef/setup-beam@v1 | |
with: | |
elixir-version: ${{ matrix.elixir }} | |
otp-version: ${{ matrix.otp }} | |
- run: mix deps.get | |
- run: mix test | |
strategy: | |
matrix: | |
elixir: | |
- 1.12.x | |
- 1.13.x | |
- 1.14.x | |
exclude: | |
- elixir: 1.12.x | |
otp: 25.x | |
- elixir: 1.13.x | |
otp: 25.x | |
otp: | |
- 24.x | |
- 25.x |