Skip to content

Bump MinVer from 5.0.0 to 6.0.0 #1459

Bump MinVer from 5.0.0 to 6.0.0

Bump MinVer from 5.0.0 to 6.0.0 #1459

Workflow file for this run

name: Build
on:
workflow_dispatch:
push:
branches:
- 'master'
paths-ignore:
- '**/readme.md'
pull_request:
types: [opened, synchronize, reopened]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
3.1.x
6.0.x
8.0.x
9.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build -c Release --no-restore
- name: Test
run: dotnet test -c Release --no-build --logger GitHubActions
- name: Upload coverage reports to Codecov with GitHub Action
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}