-
-
Notifications
You must be signed in to change notification settings - Fork 27
35 lines (31 loc) · 621 Bytes
/
ci.yml
File metadata and controls
35 lines (31 loc) · 621 Bytes
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
27
28
29
30
31
32
33
34
35
name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
strategy:
matrix:
os: ['windows-latest', 'ubuntu-latest']
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup dotnet
uses: actions/setup-dotnet@v2
with:
dotnet-version: |
9.0.x
7.0.100
6.0.x
- name: Build and Test
run: ./build.ps1
shell: pwsh
env:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1