Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 12 additions & 7 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,22 @@ on:
pull_request:
schedule:
# Runs every night at 2 AM UTC. This is to detect flakey builds
- cron: '0 2 * * *'
- cron: "0 2 * * *"

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Checkout
uses: actions/checkout@v6

- name: Run Build in Dev Container
uses: devcontainers/ci@v0.3
with:
runCmd: |
- name: Setup .NET SDK
uses: actions/setup-dotnet@v5
with:
# Use the .NET SDK from global.json in the root of the repository.
global-json-file: global.json

- name: Build
run: |
dotnet tool restore
dotnet cake