Skip to content

Commit

Permalink
ci: Test on all systems
Browse files Browse the repository at this point in the history
  • Loading branch information
amis92 committed Jun 10, 2020
1 parent ce6564b commit 49a6e3f
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,16 @@ on:
push:
pull_request:
schedule:
- cron: '0 10 * * 1' # At 10:00 on Monday.
- cron: "0 10 * * 1" # At 10:00 on Monday.
defaults:
run:
shell: pwsh
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Test with Pester
Expand Down Expand Up @@ -42,7 +45,10 @@ jobs:
return 1
}
self-testing:
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2

Expand Down

0 comments on commit 49a6e3f

Please sign in to comment.