We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cff49c5 + 858283a commit e7846baCopy full SHA for e7846ba
1 file changed
.github/workflows/pull_request.yml
@@ -4,17 +4,22 @@ on:
4
pull_request:
5
schedule:
6
# Runs every night at 2 AM UTC. This is to detect flakey builds
7
- - cron: '0 2 * * *'
+ - cron: "0 2 * * *"
8
9
jobs:
10
build:
11
runs-on: ubuntu-latest
12
steps:
13
- - name: Checkout
14
- uses: actions/checkout@v6
+ - name: Checkout
+ uses: actions/checkout@v6
15
16
- - name: Run Build in Dev Container
17
- uses: devcontainers/ci@v0.3
18
- with:
19
- runCmd: |
+ - name: Setup .NET SDK
+ uses: actions/setup-dotnet@v5
+ with:
+ # Use the .NET SDK from global.json in the root of the repository.
20
+ global-json-file: global.json
21
+
22
+ - name: Build
23
+ run: |
24
+ dotnet tool restore
25
dotnet cake
0 commit comments