We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6a477b commit ead74ffCopy full SHA for ead74ff
.github/workflows/smoketest-build.yml
@@ -7,13 +7,18 @@ on:
7
# pull_request:
8
9
jobs:
10
+
11
build:
- runs-on: ${{ matrix.os }}
12
13
strategy:
14
matrix:
15
os: [windows-latest] #, ubuntu-latest, macos-latest]
16
17
+ runs-on: ${{ matrix.os }}
18
19
+ env:
20
+ GITHUB_TOKEN: ${{ github.token }}
21
22
steps:
23
- name: Checkout repository
24
uses: actions/checkout@v4
@@ -23,11 +28,11 @@ jobs:
28
with:
29
dotnet-version: '8.0.x'
25
30
26
- - name: Restore NuGet packages
27
- run: dotnet restore
31
+ # - name: Restore NuGet packages
32
+ # run: dotnet restore
33
- - name: Handle versioning
- run: nbgv cloud -a -c
34
+ # - name: Handle versioning
35
+ # run: nbgv cloud -a -c
36
37
- name: Build solution
38
run: dotnet build --configuration Release
0 commit comments