generated from YoloDev/dotnet-template
-
Notifications
You must be signed in to change notification settings - Fork 0
69 lines (56 loc) · 1.61 KB
/
ci.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
name: CI
on:
- push
- pull_request
jobs:
test:
name: Test
runs-on: ${{ matrix.os }}
strategy:
# Always run main branch builds to completion.
fail-fast: ${{ github.event_name == 'pull_request' ||
(github.ref != 'refs/heads/main' &&
!startsWith(github.ref, 'refs/tags/')) }}
matrix:
os:
- macos-latest
- windows-latest
- ubuntu-latest
env:
DOTNET_NOLOGO: 'true'
DOTNET_CLI_TELEMETRY_OPTOUT: 'true'
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 'true'
steps:
- name: ⏬ Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: 🔽 Setup dotnet 2.1
uses: actions/setup-dotnet@v3
with:
dotnet-version: '2.1.x'
- name: 🔽 Setup dotnet 3.1
uses: actions/setup-dotnet@v3
with:
dotnet-version: '3.1.x'
- name: 🔽 Setup dotnet 5.0.x
uses: actions/setup-dotnet@v3
with:
dotnet-version: '5.0.x'
- name: 🔽 Setup dotnet from global.json
uses: actions/setup-dotnet@v3
- name: 🔍 Print dotnet info
run: dotnet --info
- id: version
name: 🔍 Determine Version
shell: bash
run: |
VERSION=$(cat version.txt)
echo "VERSION: '$VERSION'"
echo "::set-output name=version::$VERSION"
- name: 🔽 Restore
run: dotnet restore -p:Configuration=Release
- name: 🔨 Build
run: dotnet build --configuration Release
- name: 🧪 Test
run: dotnet test --no-build --configuration Release