This repository was archived by the owner on Dec 17, 2025. It is now read-only.
chore(deps): Bump devantler-tech/reusable-workflows/.github/workflows… #131
This file contains hidden or 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 .NET solution or project | |
| permissions: | |
| packages: read | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| merge_group: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| test: | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, windows-latest, macos-latest] | |
| runs-on: ${{ matrix.os }} | |
| if: github.event.pull_request.draft == false | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1 | |
| with: | |
| persist-credentials: false | |
| - name: Install Cilium CLI | |
| uses: jaxxstorm/action-install-gh-release@6096f2a2bbfee498ced520b6922ac2c06e990ed2 # v2.1.0 | |
| with: | |
| repo: cilium/cilium-cli | |
| - name: Test .NET solution or project | |
| uses: devantler-tech/composite-actions/dotnet-test-action@005c37f8ef5e1811388cf19b3b93eb721351b6be # v.1.9.5 | |
| with: | |
| app_id: ${{ vars.APP_ID }} | |
| app_private_key: ${{ secrets.APP_PRIVATE_KEY }} | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| codecov-token: ${{ secrets.CODECOV_TOKEN }} |