build(deps): bump actions/setup-dotnet from 5c125af7da1b2700edf7106be3a4f8a60f495f59 to 21e81f65ddb80069d5591297dcd4703c0d9824d2 #1366
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 | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| push: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| jobs: | |
| test: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 | |
| - uses: actions/setup-dotnet@21e81f65ddb80069d5591297dcd4703c0d9824d2 | |
| with: | |
| dotnet-version: "9.0.101" | |
| - name: Run tests | |
| run: pwsh ./bin/test.ps1 |