Update dotnet-CI-workflow.yml #41
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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-latest | |
steps: | |
- uses: actions/[email protected] | |
- name: Setup MSBuild | |
uses: microsoft/[email protected] | |
- name: Setup VSTest | |
uses: darenm/[email protected] | |
- name: Setup NuGet | |
uses: NuGet/[email protected] | |
- name: Restore NuGet packages | |
run: nuget restore RandomString4Net.sln | |
- name: Build RandomString4Net 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 }} |