-
Notifications
You must be signed in to change notification settings - Fork 2
52 lines (48 loc) · 1.41 KB
/
c#.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
name: c#
on:
push:
paths: [c#/**]
defaults:
run:
working-directory: c#
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
project: [crawler, imagePipeline, shared, tbClient]
fail-fast: false
env:
NUGET_PACKAGES: ${{ github.workspace }}/.nuget/packages
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/c#
- run: dotnet build --no-restore -c Debug ${{ matrix.project }}
ReSharper:
runs-on: ubuntu-latest
env:
NUGET_PACKAGES: ${{ github.workspace }}/.nuget/packages
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/c#
- id: cache-restore
uses: actions/cache/restore@v4
with:
path: |
${{ github.workspace }}/.resharper
~/.dotnet/tools
key: ${{ runner.os }}-resharper
restore-keys: ${{ runner.os }}-resharper-
- uses: muno92/resharper_inspectcode@v1
with:
minimumReportSeverity: info
solutionPath: c#/tbm.sln
cachesHome: ${{ github.workspace }}/.resharper
# https://github.com/actions/runner/issues/1478
- uses: actions/cache/save@v4
if: always() && steps.cache-restore.outputs.cache-hit != 'true'
with:
path: |
${{ github.workspace }}/.resharper
~/.dotnet/tools
key: ${{ steps.cache-restore.outputs.cache-primary-key }}