Merge pull request #657 from Atralupus/add-claude-md #1230
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 Projects | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| build: | |
| name: 'Test (${{ matrix.project }})' | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| project: [Mimir.Worker.Tests, Lib9c.Models.Tests, Mimir.MongoDB.Tests, Mimir.Tests] | |
| steps: | |
| - | |
| name: Checkout | |
| uses: actions/checkout@v4 | |
| - uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: 8.0.x | |
| - run: dotnet test ${{ matrix.project }} |