Skip to content

Commit

Permalink
Update CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
r8 committed Dec 14, 2024
1 parent d379bf9 commit ef406f1
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ env:
jobs:
static_code_analysis:
name: Static Code Analysis
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
strategy:
matrix:
elixir: [1.11]
otp: [23.2]
otp: ["26.2.1"]
elixir: ["1.16.1", "1.17.3"]
steps:
- name: Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.6.0
Expand All @@ -29,10 +29,10 @@ jobs:
fetch-depth: 0

- name: Setup
uses: erlef/setup-beam@v1
uses: erlef/setup-beam@v1.18.2
with:
otp-version: ${{matrix.otp}}
elixir-version: ${{ matrix.elixir }}
otp-version: ${{ matrix.otp }}

- name: Install Dependencies
if: steps.mix-cache.outputs.cache-hit != 'true'
Expand All @@ -51,12 +51,12 @@ jobs:

unit_tests:
name: Unit Tests
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
strategy:
fail-fast: false
matrix:
elixir: [1.11]
otp: [23.2]
otp: ["26.2.1"]
elixir: ["1.16.1", "1.17.3"]
steps:
- name: Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.6.0
Expand All @@ -69,10 +69,10 @@ jobs:
fetch-depth: 0

- name: Setup
uses: erlef/setup-beam@v1
uses: erlef/setup-beam@v1.18.2
with:
otp-version: ${{matrix.otp}}
elixir-version: ${{ matrix.elixir }}
otp-version: ${{ matrix.otp }}

- name: Install Dependencies
if: steps.mix-cache.outputs.cache-hit != 'true'
Expand Down

0 comments on commit ef406f1

Please sign in to comment.