Skip to content

deps: Bump the nuget-minor-and-patch group with 5 updates #97

deps: Bump the nuget-minor-and-patch group with 5 updates

deps: Bump the nuget-minor-and-patch group with 5 updates #97

Workflow file for this run

name: 🧱 CI
on:
pull_request:
push:
branches:
- "patch/**"
workflow_dispatch:
permissions:
contents: read
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6.0.3
- uses: actions/setup-dotnet@v5
with:
global-json-file: global.json
- name: Restore tools
run: dotnet tool restore
- name: Restore
run: dotnet restore opengamebuilder.slnx
- name: Build
run: dotnet build opengamebuilder.slnx --configuration Release --no-restore
- name: Test
run: dotnet test opengamebuilder.slnx --configuration Release --no-build