Merge pull request #437 from azuressu/testingcode #752
This file contains 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] | |
steps: | |
- | |
name: Checkout | |
uses: actions/checkout@v4 | |
- uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 8.0.x | |
- run: dotnet test ${{ matrix.project }} |