Skip to content

chore(deps): bump actions/checkout from 4 to 5 #127

chore(deps): bump actions/checkout from 4 to 5

chore(deps): bump actions/checkout from 4 to 5 #127

Workflow file for this run

name: .NET CI
on:
push:
branches: [ "main" ]
pull_request:
types: [opened, synchronize, reopened, closed]
branches: [ "main" ]
permissions:
contents: read
pull-requests: write
defaults:
run:
shell: pwsh
env:
DOTNET_VERSION: '9.x'
jobs:
build-and-test:
runs-on: ubuntu-latest
name: Build and Test
steps:
- name: Checkout repository
uses: actions/checkout@v5
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
- name: Install dependencies
run: dotnet restore
- name: Verify formatting
run: dotnet format --verify-no-changes --no-restore
- name: Build solution
run: dotnet build --no-restore