Skip to content

Commit c66267c

Browse files
committed
fixup! feat(ci): Fake build project
1 parent c33ab51 commit c66267c

File tree

2 files changed

+40
-41
lines changed

2 files changed

+40
-41
lines changed

.devcontainer/devcontainer.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,7 @@
2323
"ghcr.io/devcontainers-contrib/features/starship:1": {},
2424
// https://github.com/devcontainers/features/blob/main/src/dotnet/README.md
2525
"ghcr.io/devcontainers/features/dotnet:2": {
26-
"version": "9.0",
27-
"additionalVersions": "8.0"
26+
"version": "9.0"
2827
}
2928
},
3029
"overrideFeatureInstallOrder": [

.github/workflows/build+test+deploy.yml

Lines changed: 39 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)