Merge pull request #37 from danschultzer/include-inets #201
This file contains hidden or 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@v4 | |
| - uses: erlef/setup-beam@v1 | |
| with: | |
| otp-version: 27.0 | |
| elixir-version: 1.18 | |
| - uses: actions/cache@v4 | |
| env: | |
| cache-name: ${{ github.event.repository.name }}-plt | |
| with: | |
| path: | | |
| _build | |
| deps | |
| key: ${{ runner.os }}-mix-${{ env.cache-name }}-${{ hashFiles('mix.lock') }} | |
| - run: mix deps.get | |
| - run: mix compile --warnings-as-errors | |
| - run: mix credo --strict --ignore design.alias | |
| - run: mix format --check-formatted | |
| - run: mix dialyzer --format github | |
| test: | |
| strategy: | |
| matrix: | |
| http_server: [Httpd, Plug.Cowboy, Bandit] | |
| version: | |
| - elixir: 1.18 | |
| otp: 27.0 | |
| - 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@v4 | |
| - 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 |