Bump github/codeql-action from 4.32.4 to 4.35.1 #123
Workflow file for this run
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, pull_request] | |
| permissions: | |
| contents: read | |
| jobs: | |
| test: | |
| name: Test | |
| runs-on: ubuntu-24.04 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - erlang: "27.3" | |
| elixir: "1.19.5" | |
| lint: true | |
| big: true | |
| - erlang: "27.3" | |
| elixir: "1.18.4" | |
| - erlang: "27.3" | |
| elixir: "1.17.3" | |
| - erlang: "26.2" | |
| elixir: "1.16.3" | |
| - erlang: "26.2" | |
| elixir: "1.15.8" | |
| - erlang: "25.3" | |
| elixir: "1.14.5" | |
| - erlang: "25.3" | |
| elixir: "1.13.4" | |
| - erlang: "24.3.4" | |
| elixir: "1.12.3" | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| persist-credentials: false | |
| - name: Install OTP and Elixir | |
| uses: erlef/setup-beam@ee09b1e59bb240681c382eb1f0abc6a04af72764 # v1.23.0 | |
| with: | |
| otp-version: ${{matrix.erlang}} | |
| elixir-version: ${{matrix.elixir}} | |
| - name: Install dependencies | |
| run: mix deps.get | |
| - name: Check for unused dependencies | |
| run: mix deps.unlock --check-unused | |
| if: ${{matrix.lint}} | |
| - name: Compile with --warnings-as-errors | |
| run: mix compile --warnings-as-errors | |
| if: ${{matrix.lint}} | |
| - name: Check mix format | |
| run: mix format --check-formatted | |
| if: ${{matrix.lint}} | |
| - name: Run tests | |
| run: mix test | |
| if: ${{!matrix.big}} | |
| - name: Run tests | |
| run: mix test | |
| if: ${{matrix.big}} | |
| env: | |
| MAX_RUNS: "50000" |