Skip to content

Update dotnet-CI-workflow.yml #36

Update dotnet-CI-workflow.yml

Update dotnet-CI-workflow.yml #36

# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
name: build-and-test-workflow
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: windows-2022
steps:
- uses: actions/checkout@v4.1.1
- name: Install .NET Framework 4.0 Full Redistributable
run: |
choco install dotnet4.0 -y
Import-Module $env:ChocolateyInstall\helpers\chocolateyProfile.psm1
RefreshEnvironment
- name: Setup MSBuild
uses: microsoft/setup-msbuild@v1.3.1
- name: Setup VSTest
uses: darenm/Setup-VSTest@v1.2
- name: Setup NuGet
uses: NuGet/setup-nuget@v1.1.1
- name: Restore NuGet packages
run: nuget restore RandomString4Net.sln
- name: Build RandomString4Net project for release
run: msbuild RandomString4Net.sln -property:Configuration=Release -property:platform="Any CPU"
- name: Run Tests
run: vstest.console.exe .\RandomString4NetTest\bin\Release\RandomString4NetTest.dll
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}