Merge pull request #99 from wlsnmrk/fix/readme-sync-link #351
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: 🚥 Tests | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| tests: | |
| name: 🧪 Evaluate Tests on ${{ matrix.os }} | |
| # Only run the workflow if it's not a PR or if it's a PR from a fork. | |
| # This prevents duplicate workflows from running on PR's that originate | |
| # from the repository itself. | |
| if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| # Don't cancel other OS runners if one fails. | |
| fail-fast: false | |
| matrix: | |
| # Put the operating systems you want to run on here. | |
| os: [ubuntu-latest] | |
| env: | |
| DOTNET_CLI_TELEMETRY_OPTOUT: true | |
| DOTNET_NOLOGO: true | |
| defaults: | |
| run: | |
| # Use bash shells on all platforms. | |
| shell: bash | |
| steps: | |
| - name: 🧾 Checkout | |
| uses: actions/checkout@v5 | |
| - name: 💽 Setup .NET SDK | |
| uses: actions/setup-dotnet@v5 | |
| with: | |
| global-json-file: global.json | |
| - name: 📦 Restore Dependencies | |
| run: dotnet restore | |
| - name: 🦺 Build Projects | |
| run: dotnet build # --configuration Release | |
| - name: 🧪 Run Tests | |
| run: dotnet test |