Skip to content

Update branch for actions (#111) #316

Update branch for actions (#111)

Update branch for actions (#111) #316

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
types: [synchronize, opened, reopened, ready_for_review]
jobs:
test:
runs-on: ubuntu-20.04
name: OTP ${{matrix.otp}} / Elixir ${{matrix.elixir}}
env:
MIX_ENV: test
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
COVERALLS_TOKEN: ${{ secrets.COVERALLS_TOKEN }}
steps:
- uses: actions/checkout@v3
- uses: erlef/setup-beam@v1
with:
otp-version: '25.3'
elixir-version: '1.14.5'
- run: mix deps.get
- run: mix compile
- run: mix credo --strict
- run: mix coveralls.github
- run: mix test