Skip to content

change build

change build #2

Workflow file for this run

name: on-push-to-main
concurrency:
group: on-push-to-main
cancel-in-progress: true
on:
push:
branches:
- '*' # TODO - master
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET 8.x
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.x'
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build ./Code/WeatherStationProjectDashboard.sln
- name: Test with the dotnet CLI
run: dotnet test