Skip to content

Commit

Permalink
Run tests on Windows
Browse files Browse the repository at this point in the history
Signed-off-by: Kazuyoshi Kato <katokazu@amazon.com>
  • Loading branch information
kzys committed Feb 21, 2022
1 parent 7e5ee24 commit 465e6a2
Showing 1 changed file with 17 additions and 2 deletions.
19 changes: 17 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ on:
branches: [ main ]

jobs:
test:
name: Test
check:
name: Project checks
runs-on: ubuntu-20.04
timeout-minutes: 5
steps:
Expand All @@ -23,6 +23,21 @@ jobs:
with:
working-directory: src/github.com/containerd/protobuild

test:
name: Test
strategy:
matrix:
os: [ ubuntu-20.04, windows-2022 ]
fail-fast: false
runs-on: ${{ matrix.os }}
timeout-minutes: 5
steps:
- name: Check out code
uses: actions/checkout@v2
with:
path: src/github.com/containerd/protobuild
fetch-depth: 25

- name: Setup environment
shell: bash
run: |
Expand Down

0 comments on commit 465e6a2

Please sign in to comment.