upd: NuGet module bundled doc #2
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
name: Testing on PRs to master branch | |
on: | |
pull_request: | |
branches: | |
- master | |
paths: | |
- "**/*.cs" | |
jobs: | |
unit_tests: | |
name: Unit tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: '6.x' | |
- name: Launch tests | |
run: dotnet test --nologo |