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 6e12ee5 commit 2bf6f72Copy full SHA for 2bf6f72
1 file changed
.github/workflows/tests.yml
@@ -8,14 +8,9 @@ on:
8
9
jobs:
10
ubuntu:
11
- name: "Ubuntu - ${{ matrix.version }}"
12
- runs-on: ${{ matrix.version }}
+ name: "Ubuntu - latest"
+ runs-on: ubuntu-latest
13
timeout-minutes: 10
14
- strategy:
15
- matrix:
16
- version:
17
- - ubuntu-latest
18
- - ubuntu-22.04 # one version before latest
19
steps:
20
- name: Checkout
21
uses: actions/checkout@v4
@@ -26,14 +21,9 @@ jobs:
26
run: make test
27
22
28
23
macos:
29
- name: "macOS - ${{ matrix.version }}"
30
24
+ name: "macOS - latest"
25
+ runs-on: macos-latest
31
32
33
34
35
- - macos-latest
36
- - macos-13 # one version before latest
37
38
39
0 commit comments