We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4affd44 commit aa66219Copy full SHA for aa66219
.github/workflows/main.yml
@@ -2,10 +2,10 @@ name: Build and Test
2
3
on:
4
push:
5
- branches:
+ branches:
6
- master
7
pull_request:
8
9
10
11
jobs:
@@ -15,17 +15,17 @@ jobs:
15
fail-fast: false
16
matrix:
17
os: [windows-latest, macOS-latest, ubuntu-latest]
18
- dotnet: [6.0.302]
+ dotnet: [6.0.400]
19
runs-on: ${{ matrix.os }}
20
21
steps:
22
- uses: actions/checkout@v3
23
-
+
24
- name: Setup .NET
25
uses: actions/setup-dotnet@v2
26
with:
27
dotnet-version: ${{ matrix.dotnet }}
28
29
- name: Restore dependencies
30
run: dotnet restore
31
- name: Build
0 commit comments