-
-
Notifications
You must be signed in to change notification settings - Fork 224
36 lines (27 loc) · 768 Bytes
/
build.yml
File metadata and controls
36 lines (27 loc) · 768 Bytes
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
34
35
36
name: Build Yarn Spinner
on:
push:
branches: [main, "feature/**", "release/**"]
pull_request:
branches: [main, "feature/**", "release/**"]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 10.0.x
- name: Fetch all commits
run: git fetch --unshallow
- name: Update version
id: version
run: ./get-version.sh
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore --configuration Release
- name: Test
run: dotnet test --no-build --configuration Release --verbosity normal