Skip to content

GitHub Actions: build #2

GitHub Actions: build

GitHub Actions: build #2

Workflow file for this run

name: Build (.NET 8)
on:
push:
branches: [ main ]
pull_request:
jobs:
build:
runs-on: windows-latest
env:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
DOTNET_CLI_TELEMETRY_OPTOUT: true
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup .NET 8
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x'
cache: true
cache-dependency-path: |
**/*.csproj
**/*.sln
- name: Build
run: dotnet build HwProj.sln -c Release