-
-
Notifications
You must be signed in to change notification settings - Fork 44
33 lines (25 loc) · 906 Bytes
/
ci-pr.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: Build & Test PR
on:
pull_request:
branches: [ main ]
env:
NETCORE_VERSION: '7.0.x'
PROJECT_NAME: Blazored.SessionStorage
jobs:
build:
name: Build and test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setting up .NET Core SDK ${{ env.NETCORE_VERSION }}...
uses: actions/setup-dotnet@v1
with:
dotnet-version: ${{ env.NETCORE_VERSION }}
- name: Restoring packages...
run: dotnet restore
- name: Building Session Storage...
run: dotnet build --configuration Release --no-restore src/$PROJECT_NAME/$PROJECT_NAME.csproj
- name: Build Session Storage Test Extensions
run: dotnet build -c Release --no-restore src/$PROJECT_NAME.TestExtensions/$PROJECT_NAME.TestExtensions.csproj
- name: Testing...
run: dotnet test -c Release --no-restore --verbosity normal tests/$PROJECT_NAME.Tests