Merge pull request #25 from krymtkts/feature/remove-pat #58
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 main | |
| on: | |
| push: | |
| branches: ["main"] | |
| pull_request: | |
| branches: ["main"] | |
| permissions: | |
| contents: read | |
| security-events: write | |
| jobs: | |
| test: | |
| strategy: | |
| # NOTE: Disable fail-fast to ensure tests run on all platforms. | |
| fail-fast: false | |
| matrix: | |
| os: | |
| - windows-latest | |
| - ubuntu-latest | |
| - macos-latest | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Test | |
| uses: ./.github/actions/test | |
| with: | |
| codecov_token: ${{ secrets.CODECOV_TOKEN }} | |
| sarif_main_file: analysis/SampleModule-report.sarif | |
| sarif_test_file: analysis/SampleModule.Test-report.sarif |