Skip to content

feat: allow ignoring module attributes in Credo.Check.Readability.StrictModuleLayout #778

feat: allow ignoring module attributes in Credo.Check.Readability.StrictModuleLayout

feat: allow ignoring module attributes in Credo.Check.Readability.StrictModuleLayout #778

Workflow file for this run

name: "CI Tests"
on:
push:
branches:
- master
- release/*
pull_request:
branches:
- master
jobs:
test:
runs-on: ubuntu-18.04
name: "[${{matrix.otp}}/${{matrix.elixir}}] CI Tests on Credo [OTP/Elixir]"
strategy:
fail-fast: false
matrix:
otp: [21.3, 22.3, 23.3, 24.2]
elixir: [1.10.4, 1.11.4, 1.12.2, 1.13.4, 1.14.0]
exclude:
- otp: 24.2
elixir: 1.10.4
- otp: 21.3
elixir: 1.12.2
- otp: 21.3
elixir: 1.13.4
- otp: 21.3
elixir: 1.14.0
- otp: 22.3
elixir: 1.14.0
steps:
- uses: actions/checkout@v2.3.1
with:
fetch-depth: 0
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.otp}}
elixir-version: ${{matrix.elixir}}
- run: mix deps.get
- run: mix deps.compile
- run: mix compile --warnings-as-errors
- run: mix test
- run: ./test/smoke_test.sh