Update CHANGELOG #1414
This file contains 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: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
mix_test: | |
name: mix test (Elixir ${{matrix.elixir}} | Erlang/OTP ${{matrix.otp}}) | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- elixir: '1.13.4' | |
otp: '24.0' | |
old_deps: true | |
- elixir: '1.13.4' | |
otp: '25.0' | |
run_plugin_tests: true | |
warnings_as_errors: true | |
- elixir: '1.14.0' | |
otp: '25.0' | |
run_plugin_tests: true | |
run_integration_tests: true | |
warnings_as_errors: true | |
- elixir: '1.15.2' | |
otp: '26.0' | |
run_plugin_tests: true | |
run_integration_tests: true | |
warnings_as_errors: true | |
- elixir: '1.16.0' | |
otp: '26.2.1' | |
check_formatted: true | |
run_plugin_tests: true | |
run_integration_tests: true | |
warnings_as_errors: true | |
- elixir: '1.16.0' | |
otp: '26.2.1' | |
update_deps: true | |
run_plugin_tests: true | |
env: | |
MIX_ENV: test | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: erlef/setup-beam@v1 | |
with: | |
otp-version: ${{matrix.otp}} | |
elixir-version: ${{matrix.elixir}} | |
- name: Use old lock file | |
if: matrix.old_deps | |
run: mv mix.lock.old mix.lock | |
- name: Update deps | |
if: matrix.update_deps | |
run: mix deps.update --all | |
- name: Deps and _build cache | |
uses: actions/cache@v4 | |
id: deps-cache | |
with: | |
path: | | |
deps | |
_build | |
key: ${{ runner.os }}-${{ runner.arch }}-${{ matrix.otp }}-${{ matrix.elixir }}-${{ hashFiles('mix.lock') }} | |
- name: Install Dependencies | |
if: steps.deps-cache.outputs.cache-hit != 'true' | |
run: | | |
mix local.hex --force | |
mix local.rebar --force | |
mix deps.get --only test | |
- run: mix deps.compile | |
if: steps.deps-cache.outputs.cache-hit != 'true' | |
- run: mix format --check-formatted | |
if: matrix.check_formatted | |
- run: mix compile --warnings-as-errors | |
if: matrix.warnings_as_errors | |
- name: mix test | |
run: mix test --include integration:${{ !!matrix.run_integration_tests }} --exclude plugin:${{ !matrix.run_plugin_tests }} |