-
-
Notifications
You must be signed in to change notification settings - Fork 10
69 lines (55 loc) · 1.35 KB
/
main.yml
File metadata and controls
69 lines (55 loc) · 1.35 KB
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
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions:
contents: read
name: main
jobs:
linux:
name: Linux
runs-on: ubuntu-24.04
container:
image: mcr.microsoft.com/dotnet/sdk:8.0
steps:
- name: Checkout
uses: actions/checkout@v6
with:
persist-credentials: false
- name: Build
run: dotnet build -f net8.0 -c Release
working-directory: tests/QRCodeCore.Tests
- name: Test
run: dotnet test -f net8.0 -c Release
working-directory: tests/QRCodeCore.Tests
macos:
name: MacOS
runs-on: macos-14
steps:
- name: Checkout
uses: actions/checkout@v6
with:
persist-credentials: false
- name: Build
run: dotnet build -f net8.0 -c Release
working-directory: tests/QRCodeCore.Tests
- name: Test
run: dotnet test -f net8.0 -c Release
working-directory: tests/QRCodeCore.Tests
windows:
name: Windows
runs-on: windows-2022
steps:
- name: Checkout
uses: actions/checkout@v6
with:
persist-credentials: false
- name: Build
run: dotnet build -c Release
working-directory: tests/QRCodeCore.Tests
- name: Test
run: dotnet test -c Release
working-directory: tests/QRCodeCore.Tests