build(deps): bump actions/checkout from 5 to 6 (#789) #392
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: PR check - CLI Installation test | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| cli-test: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest] | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-tags: true | |
| - name: Set up Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version-file: ./go.mod | |
| - name: Install kind | |
| uses: helm/[email protected] | |
| with: | |
| install_only: true | |
| - name: Run build | |
| run: make build | |
| - name: Build docker images | |
| run: make docker-build | |
| - name: Run installation test using CLI | |
| run: ./tests/cli/basic_test.sh | |
| - name: upload e2e k8s test logs | |
| uses: actions/upload-artifact@v5 | |
| if: failure() | |
| with: | |
| name: tests-cli | |
| path: /tmp/clusterlink-cli |