@@ -17,57 +17,57 @@ jobs:
1717 runs-on : ${{ matrix.os }}
1818
1919 steps :
20- - uses : actions/checkout@v3
21- - name : Setup necessary dotnet SDKs
22- uses : actions/setup-dotnet@v3
23- with :
24- global-json-file : global.json
20+ - uses : actions/checkout@v3
21+ - name : Setup necessary dotnet SDKs
22+ uses : actions/setup-dotnet@v3
23+ with :
24+ global-json-file : global.json
2525
26- - name : Build via Bash
27- if : runner.os != 'Windows'
28- run : |
29- chmod +x ./build.sh
30- ./build.sh
31- env :
32- CI : true
33- CONFIGURATION : ${{ matrix.configuration }}
34- ENABLE_COVERAGE : true
35- - name : Build via Windows
36- if : runner.os == 'Windows'
37- run : ./build.cmd
38- env :
39- CI : true
40- CONFIGURATION : ${{ matrix.configuration }}
41- ENABLE_COVERAGE : true
26+ - name : Build via Bash
27+ if : runner.os != 'Windows'
28+ run : |
29+ chmod +x ./build.sh
30+ ./build.sh
31+ env :
32+ CI : true
33+ CONFIGURATION : ${{ matrix.configuration }}
34+ ENABLE_COVERAGE : true
35+ - name : Build via Windows
36+ if : runner.os == 'Windows'
37+ run : ./build.cmd
38+ env :
39+ CI : true
40+ CONFIGURATION : ${{ matrix.configuration }}
41+ ENABLE_COVERAGE : true
4242
4343 # Run SelfCheck once on Linux to check for lint warnings
4444 selfcheck :
4545 runs-on : ubuntu-latest
4646 needs : build
4747 steps :
48- - uses : actions/checkout@v4
49- - name : Setup necessary dotnet SDKs
50- uses : actions/setup-dotnet@v4
51- with :
52- global-json-file : global.json
48+ - uses : actions/checkout@v4
49+ - name : Setup necessary dotnet SDKs
50+ uses : actions/setup-dotnet@v4
51+ with :
52+ global-json-file : global.json
5353
54- - name : Run SelfCheck
55- run : |
56- chmod +x ./build.sh
57- ./build.sh SelfCheck
58- env :
59- CI : true
54+ - name : Run SelfCheck
55+ run : |
56+ chmod +x ./build.sh
57+ ./build.sh SelfCheck
58+ env :
59+ CI : true
6060
6161 # Builds the project in a dev container
6262 build-devcontainer :
6363 runs-on : ubuntu-latest
6464 steps :
6565
66- - uses : actions/checkout@v3
66+ - uses : actions/checkout@v3
6767
68- - name : Build and run dev container task
69- uses :
devcontainers/[email protected] 70- with :
71- runCmd : |
72- chmod +x ./build.sh
73- ./build.sh
68+ - name : Build and run dev container task
69+ uses :
devcontainers/[email protected] 70+ with :
71+ runCmd : |
72+ chmod +x ./build.sh
73+ ./build.sh
0 commit comments