fix(deps): update dependency xunit.runner.visualstudio to 3.1.4 (#274) #655
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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
persist-credentials: false | |
- name: Install Age CLI | |
uses: jaxxstorm/action-install-gh-release@6096f2a2bbfee498ced520b6922ac2c06e990ed2 # v2.1.0 | |
with: | |
repo: FiloSottile/age | |
binaries-location: age | |
chmod: 0755 | |
- name: Setup SOPS | |
uses: nhedger/setup-sops@187c90dbb4e28c3225263886266a5b92baa7e5a1 # v2.1.1 | |
- name: Test .NET solution or project | |
uses: devantler-tech/composite-actions/dotnet-test-action@d4b23f9e20423712a3300a63bdbaf4ac70fee721 # v.1.9.2 | |
with: | |
app_id: ${{ vars.APP_ID }} | |
app_private_key: ${{ secrets.APP_PRIVATE_KEY }} | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
codecov-token: ${{ secrets.CODECOV_TOKEN }} |