mirror of
https://gitee.com/handyorg/HandyControl.git
synced 2024-11-30 02:48:03 +08:00
21 lines
404 B
YAML
21 lines
404 B
YAML
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: windows-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@master
|
|
|
|
- name: Setup .NET Core SDK
|
|
uses: actions/setup-dotnet@master
|
|
with:
|
|
dotnet-version: '6.0.x'
|
|
include-prerelease: true
|
|
|
|
- name: Build
|
|
shell: pwsh
|
|
run: |
|
|
cd build
|
|
.\build.ps1
|