Skip to content

Bump actions/download-artifact from 1 to 4.1.7 in /.github/workflows in the github_actions group across 1 directory #35

Bump actions/download-artifact from 1 to 4.1.7 in /.github/workflows in the github_actions group across 1 directory

Bump actions/download-artifact from 1 to 4.1.7 in /.github/workflows in the github_actions group across 1 directory #35

Workflow file for this run

name: .NET
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: 'Checkout'
uses: actions/checkout@v2
- name: 'Setup .NET'
uses: actions/setup-dotnet@v1
with:
dotnet-version: 5.0.x
- name: 'Restore dependencies'
run: dotnet restore
- name: 'Build'
run: dotnet build --no-restore
- name: 'Test'
run: dotnet test --no-build --verbosity normal /p:CollectCoverage=true /p:CoverletOutputFormat=opencover
- name: 'Codecov'
uses: codecov/codecov-action@v2