Update dependencies and test with Elixir 1.16 #153
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
name: CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
workflow_call: | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
name: Linter | |
env: | |
MIX_ENV: test | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: erlef/setup-beam@v1 | |
with: | |
otp-version: 26.0 | |
elixir-version: 1.16 | |
- run: mix deps.get | |
- run: mix compile --warnings-as-errors | |
- run: mix credo --strict --ignore design.alias | |
- run: mix format --check-formatted | |
test: | |
strategy: | |
matrix: | |
http_server: [Httpd, Plug.Cowboy, Bandit] | |
version: | |
- elixir: 1.16 | |
otp: 26.0 | |
- elixir: 1.13 | |
otp: 25.0 | |
runs-on: ubuntu-latest | |
name: OTP ${{matrix.version.otp}} / Elixir ${{matrix.version.elixir}} / ${{matrix.http_server}} | |
env: | |
MIX_ENV: test | |
HTTP_SERVER: ${{matrix.http_server}} | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: erlef/setup-beam@v1 | |
with: | |
otp-version: ${{matrix.version.otp}} | |
elixir-version: ${{matrix.version.elixir}} | |
- run: mix deps.get mix compile --warnings-as-errors | |
- run: mix test |