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 f2ab5fb commit 8dd04baCopy full SHA for 8dd04ba
.github/workflows/test.yml
@@ -0,0 +1,31 @@
1
+name: Run all tests
2
+
3
+on:
4
+ push:
5
+ branches: [ main ]
6
+ pull_request:
7
8
+ workflow_dispatch:
9
10
+env:
11
+ APPLITOOLS_API_KEY: ${{ secrets.APPLITOOLS_API_KEY }}
12
+ HEADLESS: true
13
14
+jobs:
15
+ test:
16
+ runs-on: windows-latest
17
18
+ steps:
19
+ - name: Check out code
20
+ uses: actions/checkout@v3
21
22
+ - name: Set up .NET
23
+ uses: actions/setup-dotnet@v3
24
+ with:
25
+ dotnet-version: '7.0.x'
26
27
+ - name: Build the example project
28
+ run: dotnet build
29
30
+ - name: Run the example tests
31
+ run: dotnet test --no-build --verbosity normal
0 commit comments