We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b8ec79b commit e7e0decCopy full SHA for e7e0dec
.github/workflows/ci.yml
@@ -29,7 +29,7 @@ jobs:
29
30
strategy:
31
matrix:
32
- os: [ubuntu-22.04, macos-13] # TODO: Add windows-2019
+ os: [ubuntu-latest, macos-latest, windows-latest]
33
34
steps:
35
- uses: actions/setup-go@v5
@@ -50,7 +50,7 @@ jobs:
50
project:
51
name: Project Checks
52
if: github.repository == 'containerd/plugin'
53
- runs-on: ubuntu-22.04
+ runs-on: ubuntu-latest
54
timeout-minutes: 5
55
56
@@ -71,9 +71,13 @@ jobs:
71
72
tests:
73
name: Tests
74
+ runs-on: ${{ matrix.os }}
75
76
77
+ strategy:
78
+ matrix:
79
80
+
81
82
- uses: actions/checkout@v4
83
with:
0 commit comments