feat: update Carbon dependency to v2.6.9 #2
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 External | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| jobs: | |
| ubuntu: | |
| strategy: | |
| matrix: | |
| go: [ "1.23", "1.24" ] | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version: ${{ matrix.go }} | |
| - name: Install dependencies | |
| run: go mod tidy && cd tests && go mod tidy | |
| - name: Run tests | |
| run: cd tests && go test -timeout 1h ./... | |