diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2794fed..8f97071 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 @@ -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: @@ -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: