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 c873e2a commit 7e2a738Copy full SHA for 7e2a738
.github/workflows/tests.yml
@@ -4,16 +4,10 @@ on: [push]
4
5
jobs:
6
test:
7
- runs-on: ubuntu-latest
+ runs-on: windows-latest
8
+ defaults:
9
+ run:
10
+ working-directory: ./src
11
steps:
12
- uses: actions/checkout@v4
- - name: Setup .NET 8.x
- uses: actions/setup-dotnet@v3
- with:
13
- dotnet-version: '8.x'
14
- - name: Install dependencies
15
- run: dotnet restore ./src
16
- - name: Build
17
- run: dotnet build ./src
18
- - name: Test with the dotnet CLI
19
- run: dotnet test ./src
+ - run: dotnet test
0 commit comments