Skip to content

Commit 94eb764

Browse files
committed
Windows CI
1 parent 683a202 commit 94eb764

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.github/workflows/ci-win.yaml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: ci-win
2+
on: [push]
3+
jobs:
4+
ci:
5+
runs-on: windows-latest
6+
strategy:
7+
matrix:
8+
run-config:
9+
- { platform: 'Any CPU', toolset: 'x64', configuration: 'Debug', solution: 'ColorSet.sln' }
10+
- { platform: 'Any CPU', toolset: 'x64', configuration: 'Release', solution: 'ColorSet.sln' }
11+
steps:
12+
13+
- uses: actions/checkout@v1
14+
with:
15+
submodules: 'recursive'
16+
17+
- uses: macmade/[email protected]
18+
19+
- uses: macmade/[email protected]
20+
if: ${{ always() }}
21+
env:
22+
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
23+
with:
24+
channel: '#ci'
25+
status: ${{ job.status }}
26+
title: ${{ matrix.run-config[ 'solution' ] }} - ${{ matrix.run-config[ 'configuration' ] }} - ${{ matrix.run-config[ 'platform' ] }}

0 commit comments

Comments
 (0)