Skip to content

v1.4.0-beta.65

v1.4.0-beta.65 #98

Workflow file for this run

name: MSBuild
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
env:
# Path to the solution file relative to the root of the project.
SOLUTION_FILE_PATH: ./HomeGenie.sln
# Configuration type to build.
# You can convert this to a build matrix if you need coverage of multiple configuration types.
# https://docs.github.com/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
BUILD_CONFIGURATION: Release
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup dotnet
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
- name: Build release
run: |
dotnet test ./src/HomeGenie.Tests/HomeGenie.Tests.csproj --framework net6.0
dotnet build --framework net472 --configuration Release
dotnet build --framework net6.0 --configuration Release