Skip to content

Commit 66b93c5

Browse files
committed
add ci pipeline
1 parent 4076be0 commit 66b93c5

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Alpha-Inv-CI
2+
on:
3+
push:
4+
branches: [ master ]
5+
pull_request:
6+
branches: [ master ]
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+
working-directory: AlphaInvertedSearcher
22+
- name: Test
23+
run: dotnet test --no-restore --verbosity normal --collect:"XPlat Code Coverage"
24+
working-directory: AlphaInvertedSearcher

0 commit comments

Comments
 (0)