Skip to content

Commit

Permalink
Conditional rule to task
Browse files Browse the repository at this point in the history
  • Loading branch information
rickardl authored Oct 19, 2020
1 parent 76ea6d4 commit 05d7426
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,10 @@ jobs:
Invoke-Expression (New-Object System.Net.WebClient).DownloadString('https://get.scoop.sh')
scoop bucket add extras
scoop install task
- name: Run CI Task
- name: Run CI Task (Linux/macOS)
if: runner.os != 'Windows'
run: ./bin/task ci
- name: Run CI Task (Windows)
if: runner.os == 'Windows'
run: task ci

0 comments on commit 05d7426

Please sign in to comment.