diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b4dcd19..42081d7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,14 +17,14 @@ concurrency: jobs: ci: - name: OTP-${{matrix.otp-version}} + name: ${{matrix.os}} / OTP-${{matrix.otp-version}} runs-on: ${{matrix.os}} strategy: matrix: otp-version: [24, 25, 26, 27] - os: [ubuntu-24.04, windows-latest] + os: [ubuntu-latest, windows-latest] steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 @@ -35,26 +35,6 @@ jobs: otp-version: ${{matrix.otp-version}} rebar3-version: 3.23.0 - - name: Restore _build - uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 - with: - path: _build - key: "_build-cache-for\ - -os-${{runner.os}}\ - -otp-${{steps.setup-beam.outputs.otp-version}}\ - -rebar3-${{steps.setup-beam.outputs.rebar3-version}}\ - -hash-${{hashFiles('rebar.lock')}}-${{hashFiles('rebar.config')}}" - - - name: Restore rebar3's cache - uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 - with: - path: ~/.cache/rebar3 - key: "rebar3-cache-for\ - -os-${{runner.os}}\ - -otp-${{steps.setup-beam.outputs.otp-version}}\ - -rebar3-${{steps.setup-beam.outputs.rebar3-version}}\ - -hash-${{hashFiles('rebar.lock')}}" - - name: Test run: | rebar3 ct