We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f52d67 commit ad2f92dCopy full SHA for ad2f92d
.github/workflows/main.yml
@@ -4,21 +4,21 @@ on: [push, pull_request]
4
5
jobs:
6
test:
7
- runs-on: ubuntu-20.04
+ runs-on: ubuntu-latest
8
env:
9
MIX_ENV: test
10
strategy:
11
fail-fast: false
12
matrix:
13
include:
14
- pair:
15
- elixir: "1.13"
16
- otp: "24.3.4.10"
+ elixir: 1.15.x
+ otp: 26.x
17
18
- elixir: "1.15"
19
- otp: "26.0"
+ elixir: 1.18.x
+ otp: 27.x
20
steps:
21
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
22
23
- name: Install OTP and Elixir
24
uses: erlef/setup-beam@v1
@@ -27,7 +27,7 @@ jobs:
27
elixir-version: ${{matrix.pair.elixir}}
28
29
- name: Cache dependencies
30
- uses: actions/cache@v3
+ uses: actions/cache@v4
31
with:
32
path: deps
33
key: mix-deps-${{ hashFiles('**/mix.lock') }}
0 commit comments