chore(deps): update dependency @docusaurus/core to v3.10.1 #94
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: Unit tests | |
| on: | |
| pull_request: # triggers on every push to a PR | |
| permissions: | |
| contents: read # checkout needs this | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout source | |
| uses: actions/checkout@v6 | |
| - name: Set up Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| # Reads version from go.mod; override with a specific version if you prefer | |
| go-version-file: go.mod | |
| - name: make placeholder assets | |
| run: make asset-placeholders | |
| - name: Run unit tests with the race detector | |
| run: make test-go |