Skip to content

Bump actions/checkout and actions/setup-dotnet to v5 (Node.js 24) #8

Bump actions/checkout and actions/setup-dotnet to v5 (Node.js 24)

Bump actions/checkout and actions/setup-dotnet to v5 (Node.js 24) #8

Workflow file for this run

name: CI
on:
push:
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: '10.x'
- name: Restore
run: dotnet restore CorePush.sln
- name: Build
run: dotnet build CorePush.sln --no-restore