Skip to content

Bump the dotnet group with 1 update #97

Bump the dotnet group with 1 update

Bump the dotnet group with 1 update #97

Workflow file for this run

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@v2
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