Skip to content

chore(actions)(deps): bump actions/checkout from 4.2.2 to 6.0.3 #17

chore(actions)(deps): bump actions/checkout from 4.2.2 to 6.0.3

chore(actions)(deps): bump actions/checkout from 4.2.2 to 6.0.3 #17

Workflow file for this run

name: CI
# Build + test on every push to main and every PR. Does NOT publish anything —
# release.yml handles publishing on `v*` tag push only.
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- name: Checkout
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
- name: Setup .NET 10
uses: actions/setup-dotnet@67a3573c9a986a3f9c594539f4ab511d57bb3ce9 # v4
with:
global-json-file: global.json
- name: Restore
run: dotnet restore Stampd.slnx
- name: Build (Release)
run: dotnet build Stampd.slnx --configuration Release --no-restore
- name: Test (Stampd.Engine.Tests)
run: dotnet test tests/Stampd.Engine.Tests/Stampd.Engine.Tests.csproj --configuration Release --no-build --verbosity normal