REP-7302 Add a new evg-cache tool for generating caching config for Evergreen #326
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 | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| unit: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out repo | |
| uses: actions/checkout@v4 | |
| - name: Install tools with `mise` | |
| uses: jdx/mise-action@v3 | |
| with: | |
| # This matches what we use in the mongosync and mongo-tools repos. | |
| version: 2026.2.19 | |
| - name: Run `go test` | |
| run: go test -v -race ./... |