Skip to content

UCC: Build using GitHub Actions #1

UCC: Build using GitHub Actions

UCC: Build using GitHub Actions #1

Workflow file for this run

name: PangLib.UCC (Build)
on:
push:
branches: [ master ]
paths:
- 'PangLib.UCC/**.*'
pull_request:
branches: [ master ]
paths:
- 'PangLib.UCC/**.*'
jobs:
build:
name: Build
runs-on: windows-latest
steps:
- uses: actions/[email protected]
- name: Set up .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: '5.x'
- name: Install dependencies
working-directory: PangLib.UCC
run: dotnet restore
- name: Build project
working-directory: PangLib.UCC
run: dotnet build