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 4076be0 commit 66b93c5Copy full SHA for 66b93c5
.github/workflows/buildPipeline.yml
@@ -0,0 +1,24 @@
1
+name: Alpha-Inv-CI
2
+on:
3
+ push:
4
+ branches: [ master ]
5
+ pull_request:
6
7
+jobs:
8
+ build:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - uses: actions/checkout@v2
12
+ - name: Setup .NET Core
13
+ uses: actions/setup-dotnet@v1
14
+ with:
15
+ dotnet-version: 3.1.301
16
+ - name: Install dependencies
17
+ run: dotnet restore
18
+ working-directory: AlphaInvertedSearcher
19
+ - name: Build
20
+ run: dotnet build --configuration Release --no-restore
21
22
+ - name: Test
23
+ run: dotnet test --no-restore --verbosity normal --collect:"XPlat Code Coverage"
24
0 commit comments