chore(deps): update xunit-dotnet monorepo #948
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: CI/CD - Run test & Generate report | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: '5.0.x' | |
- name: Run test & Generate report | |
uses: zyborg/[email protected] | |
with: | |
project_path: UnitTests | |
report_name: DeepK8s - Unit Tests | |
report_title: DeepK8s - Unit Tests | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
gist_name: deepk8s_unit_tests.md | |
gist_badge_label: 'DeepK8s - Unit Tests: %Counters_passed%/%Counters_total%' | |
gist_token: ${{ secrets.GIST_TOKEN }} | |
set_check_status_from_test_outcome: true |