Chore(deps): Bump TUnit from 1.40.5 to 1.41.0 #5
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: Testing" | |
| on: | |
| pull_request: | |
| types: [ opened, synchronize, reopened, ready_for_review ] | |
| branches: [ core ] | |
| workflow_dispatch: | |
| jobs: | |
| tests-python: | |
| name: Python Testing | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Setup Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.x' | |
| - name: Install Test Deps | |
| run: | | |
| python -m pip install --upgrade pip | |
| python -m pip install pytest | |
| - name: Run Pytest | |
| run: python -m pytest .github/scripts -q | |
| test-dotnet: | |
| name: .NET Testing | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v5 | |
| with: | |
| dotnet-version: | | |
| 8.x | |
| 9.x | |
| 10.x | |
| - name: Restore dependencies | |
| run: dotnet restore CodeOfChaos.Unions.Testing.slnf | |
| - name: Build | |
| run: dotnet build CodeOfChaos.Unions.Testing.slnf --configuration Release --no-restore | |
| - name: Run tests | |
| run: dotnet test --solution CodeOfChaos.Unions.Testing.slnf --configuration Release --no-restore --no-build | |