Update dependency Devantler.KubernetesGenerator.K3d to 1.0.2 #2240
Workflow file for this run
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: Test | |
on: | |
pull_request: | |
# Added 'edited' temporarily, as there currently is no trigger for when the base branch is updated. | |
# https://github.com/orgs/community/discussions/64119 | |
types: [opened, synchronize, reopened, ready_for_review, closed, edited] | |
branches: main | |
push: | |
branches: main | |
workflow_dispatch: {} | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
runs-on: ${{ matrix.os }} | |
if: github.event.pull_request.draft == false | |
steps: | |
- name: 📑 Checkout | |
uses: actions/checkout@v4 | |
- name: ⚙️ Setup .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 9 | |
- name: 🧪 Test | |
run: dotnet test --collect:"XPlat Code Coverage" --logger "console;verbosity=detailed" | |
- name: 📄 Upload Code Coverage to CodeCov | |
uses: codecov/codecov-action@v5 | |
with: | |
files: '**/coverage.cobertura.xml' | |
fail_ci_if_error: true | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} |