Skip to content

Switch to public GitHub Action Runners #14

Switch to public GitHub Action Runners

Switch to public GitHub Action Runners #14

Workflow file for this run

name: .NET Build
on:
push:
pull_request:
env:
DOTNET_NOLOGO: true
DOTNET_CLI_TELEMETRY_OPTOUT: true
jobs:
build:
name: Build
runs-on: ubuntu-latest
if: "!contains(toJSON(github.event.head_commit.message), '[ci-skip]')"
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7
- name: Build
run: "dotnet build"