chore(deps): bump actions/checkout from 5 to 6 #1325
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 SDKs | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| test: | |
| name: Integration Tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Sources | |
| uses: actions/checkout@v6 | |
| - name: Install Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: "1.21.4" | |
| check-latest: true | |
| cache: true | |
| - name: Install Dagger | |
| run: | | |
| cd /usr/local | |
| curl -L https://dl.dagger.io/dagger/install.sh | DAGGER_VERSION=0.9.5 sh | |
| - name: Run Integration Tests | |
| run: | | |
| dagger run go run ./test |