-
Notifications
You must be signed in to change notification settings - Fork 0
26 lines (23 loc) · 1014 Bytes
/
ci-win.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
name: ci-win
on: [push]
jobs:
ci:
runs-on: windows-latest
strategy:
matrix:
run-config:
- { platform: 'Any CPU', toolset: 'x64', configuration: 'Debug', solution: 'FunctionalSharp.sln' }
- { platform: 'Any CPU', toolset: 'x64', configuration: 'Release', solution: 'FunctionalSharp.sln' }
steps:
- uses: actions/checkout@v1
with:
submodules: 'recursive'
- uses: macmade/action-msbuild@v1.0.0
- uses: macmade/action-slack@v1.0.0
if: ${{ always() }}
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
with:
channel: '#ci'
status: ${{ job.status }}
title: ${{ matrix.run-config[ 'solution' ] }} - ${{ matrix.run-config[ 'configuration' ] }} - ${{ matrix.run-config[ 'platform' ] }}