Merge Dependabot PRs #18
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: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| jobs: | |
| ci: | |
| name: Run checks and tests over ${{matrix.otp_vsn}} and ${{matrix.os}} | |
| runs-on: ${{matrix.os}} | |
| strategy: | |
| matrix: | |
| otp_vsn: [ | |
| '24.3', | |
| '25.3', | |
| '26.2', | |
| '27.3', | |
| '28.5', | |
| '29.0' | |
| ] | |
| os: ['ubuntu-22.04'] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v7 | |
| - id: otp-version-to-rebar3-version | |
| name: "Read #{OTP version => rebar3 version} map" | |
| uses: juliangruber/read-file-action@v1 | |
| with: | |
| path: ./.github/workflows/otp_version_to_rebar3_version.json | |
| - id: setup-beam | |
| name: Setup BEAM | |
| uses: erlef/setup-beam@v1 | |
| with: | |
| otp-version: ${{matrix.otp_vsn}} | |
| # rebar3-version: https://stackoverflow.com/a/64405821 | |
| rebar3-version: | | |
| ${{ fromJson(steps.otp-version-to-rebar3-version.outputs.content)[matrix.otp_vsn] }} | |
| env: | |
| GITHUB_TOKEN: ${{ github.token }} | |
| - name: Set dynamic env (1) | |
| run: | | |
| echo "prev_github_run_number=$((${{github.run_number}} - 1))" >> "$GITHUB_ENV" | |
| echo "build_cache_prefix=_build-cache1-for-os-${{runner.os}}-otp-${{matrix.otp_vsn}}-rebar3-${{steps.setup-beam.outputs.rebar3-version}}" >> "$GITHUB_ENV" | |
| - name: Set dynamic env (2) | |
| run: | | |
| echo "build_cache_prefix_with_hash=${{env.build_cache_prefix}}-hash-${{hashFiles('rebar.lock')}}" >> "$GITHUB_ENV" | |
| - name: Restore cached build artifacts | |
| uses: actions/cache/restore@v6 | |
| with: | |
| path: _build | |
| key: ${{env.build_cache_prefix_with_hash}}-${{env.prev_github_run_number}} | |
| restore-keys: |- | |
| ${{env.build_cache_prefix_with_hash}}- | |
| ${{env.build_cache_prefix}}- | |
| - name: Run Fast Checks | |
| run: make check-fast | |
| - name: Run Tests | |
| run: make test | |
| - name: Run Slow Checks | |
| run: make check-slow | |
| - name: Save build artifacts to cache | |
| if: always() | |
| uses: actions/cache/save@v6 | |
| with: | |
| path: _build | |
| key: ${{env.build_cache_prefix_with_hash}}-${{github.run_number}} |