Skip to content

Clean up github actions ci #149

Clean up github actions ci

Clean up github actions ci #149

Workflow file for this run

name: CI
on:
push: [ main ]
pull_request:
workflow_call:
jobs:
test:
strategy:
matrix:
http_server: [Httpd, Plug.Cowboy, Bandit]
version:
- elixir: 1.15
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
- run: mix credo