Skip to content

fix: ci-build

fix: ci-build #134

Workflow file for this run

name: dotnet package
on:
push:
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
dotnet: ['3.1.x','5.0.x','6.0.x','7.0.x']
steps:
- uses: actions/checkout@v3
- name: Setup dotnet
uses: actions/setup-dotnet@v3
with:
dotnet-version: |
3.1.x
5.0.x
6.0.x
7.0.x
- name: DotNetBuild
shell: pwsh
run: ./ci-build.ps1
- name: Test
run: dotnet test --no-restore --verbosity normal /p:CollectCoverage=true /p:CoverletOutputFormat=opencover
- name: Codecov
uses: codecov/codecov-action@v3