Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:

strategy:
matrix:
os: [ubuntu-22.04, macos-13] # TODO: Add windows-2019
os: [ubuntu-latest, macos-latest] # windows-latest has fmt issue

steps:
- uses: actions/setup-go@v5
Expand All @@ -50,7 +50,7 @@ jobs:
project:
name: Project Checks
if: github.repository == 'containerd/plugin'
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
timeout-minutes: 5

steps:
Expand All @@ -71,9 +71,13 @@ jobs:

tests:
name: Tests
runs-on: ubuntu-22.04
runs-on: ${{ matrix.os }}
timeout-minutes: 5

strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]

steps:
- uses: actions/checkout@v4
with:
Expand Down
Loading