Bump the dotnet group with 1 update #101
Workflow file for this run
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: CI | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| checks: write | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.10' | |
| - name: Install threatexchange CLI | |
| run: python3 -m pip install threatexchange --upgrade | |
| - name: Setup .NET Core | |
| uses: actions/setup-dotnet@v5 | |
| with: | |
| dotnet-version: 10.0.x | |
| - name: Build | |
| run: dotnet build -c Release | |
| - name: Test | |
| run: dotnet test -c Release --no-build | |
| - name: Test Report | |
| uses: dorny/test-reporter@v3 | |
| if: success() || failure() # run this step even if previous step failed | |
| with: | |
| name: Tests # Name of the check run which will be created | |
| path: test/PdqHash.Tests/TestResults/**/*.trx # Path to test results | |
| reporter: dotnet-trx # Format of test results |