forked from casbin/Casbin.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
104 lines (81 loc) · 2.82 KB
/
infersharp.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
name: InferSharp
on: [push, pull_request]
jobs:
InferSharp:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup .NET SDK
uses: actions/setup-dotnet@v1
with:
dotnet-version: |
3.1.x
5.0.x
6.0.x
7.0.x
8.0.x
include-prerelease: true
- name: Check .NET info
run: dotnet --info
- name: Install dependencies
run: dotnet restore
- name: Build solution
run: dotnet build -c Release --no-restore
- name: Run net8.0 Infer#
uses: microsoft/[email protected]
with:
binary-path: ./Casbin/bin/Release/net8.0
- name: Print net8.0 Infer# analysis results
run: cat infer-out/report.txt
- name: Upload net8.0 infer# results artefacts
uses: actions/[email protected]
with:
name: "infersharp-net8.0-results"
path: './infer-out/report.txt'
- name: Run net7.0 Infer#
uses: microsoft/[email protected]
with:
binary-path: ./Casbin/bin/Release/net7.0
- name: Print net7.0 Infer# analysis results
run: cat infer-out/report.txt
- name: Upload net7.0 infer# results artefacts
uses: actions/[email protected]
with:
name: "infersharp-net7.0-results"
path: './infer-out/report.txt'
- name: Run net6.0 Infer#
uses: microsoft/[email protected]
with:
binary-path: ./Casbin/bin/Release/net6.0
- name: Print net6.0 Infer# analysis results
run: cat infer-out/report.txt
- name: Upload net6.0 infer# results artefacts
uses: actions/[email protected]
with:
name: "infersharp-net6.0-results"
path: './infer-out/report.txt'
- name: Run net5.0 Infer#
uses: microsoft/[email protected]
with:
binary-path: ./Casbin/bin/Release/net5.0
- name: Print net5.0 Infer# analysis results
run: cat infer-out/report.txt
- name: Upload net5.0 infer# results artefacts
uses: actions/[email protected]
with:
name: "infersharp-net5.0-results"
path: './infer-out/report.txt'
- name: Run net3.1 Infer#
uses: microsoft/[email protected]
with:
binary-path: ./Casbin/bin/Release/netcoreapp3.1
- name: Print net3.1 Infer# analysis results
run: cat infer-out/report.txt
- name: Upload net3.1 infer# results artefacts
uses: actions/[email protected]
with:
name: "infersharp-net3.1-results"
path: './infer-out/report.txt'