Skip to content

Commit

Permalink
Fix versions in actions workflow (#220)
Browse files Browse the repository at this point in the history
  • Loading branch information
parroty authored Jun 18, 2024
1 parent c9ac6df commit b1bf9d7
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,16 @@ jobs:
runs-on: ubuntu-20.04
strategy:
matrix:
otp: ['21','23']
otp: ['23']
elixir: ['1.10', '1.11']
global-mock: [true, false]
include:
- otp: '24'
elixir: '1.12'
global-mock: true
- otp: '24'
elixir: '1.12'
global-mock: false
- otp: '26'
elixir: '1.14'
global-mock: true
Expand All @@ -23,12 +29,12 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GLOBAL_MOCK: ${{ matrix.global-mock }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: erlef/setup-beam@v1
with:
otp-version: ${{ matrix.otp }}
elixir-version: ${{ matrix.elixir }}
- uses: actions/cache@v3
- uses: actions/cache@v4
with:
path: |
deps
Expand All @@ -37,7 +43,7 @@ jobs:
restore-keys: |
${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-mix-
- run: mix deps.get
- uses: nick-invision/retry@v2
- uses: nick-invision/retry@v3
with:
timeout_minutes: 3
max_attempts: 3
Expand Down

0 comments on commit b1bf9d7

Please sign in to comment.