Skip to content

Update nuget non-major dependencies #257

Update nuget non-major dependencies

Update nuget non-major dependencies #257

Workflow file for this run

name: Build and Test on windows and macos
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
types: [opened, synchronize, reopened]
workflow_dispatch:
jobs:
analyze:
strategy:
matrix:
os: [macos-latest,windows-latest] # TODO: Fix test to run on ubuntu-latest also
name: Run dotnet build and test
runs-on: ${{ matrix.os}}
env:
DOTNET_HOSTBUILDER__RELOADCONFIGONCHANGE: false
steps:
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: |
6.0.x
5.0.x
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Build
run: |
dotnet build src/AppRef.sln -v m
- name: Test
run: |
dotnet test src/AppRef.sln -v m