Release 1.9.0 #44
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: | |
push: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout GNSS_Sensor_Tracker | |
uses: actions/checkout@v3 | |
with: | |
path: GNSS_Sensor_Tracker | |
ref: main | |
- name: Setup .NET SDK | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: | |
7.0.x | |
- name: Build GNSS_Sensor_Tracker | |
run: dotnet build -c Release GNSS_Sensor_Tracker/Source/Meadow.GnssTracker.sln |