Release 1.7.0 #104
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Main Build | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: [ main ] | |
push: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout Meadow.Core | |
uses: actions/checkout@v3 | |
with: | |
path: Meadow.Core | |
ref: main | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: 7.0.x | |
- name: Workload Restore Meadow.Core | |
run: dotnet workload restore Meadow.Core/source/Meadow.Core.sln | |
- name: Build Meadow.Core | |
run: dotnet build -c Release Meadow.Core/source/Meadow.Core.sln |