Skip to content

Release 1.7.0

Release 1.7.0 #105

Workflow file for this run

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