Bump pulsarctl version to 4.1.0.9 #1724
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: Pulsarctl | |
| on: | |
| pull_request: | |
| branches: | |
| - '*' | |
| path-ignores: | |
| - 'docs/**' | |
| - 'README.md' | |
| - 'CONTRIBUTING.md' | |
| jobs: | |
| packages-tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Login SN docker hub | |
| run: docker login -u="${{ secrets.DOCKER_USER }}" -p="${{ secrets.DOCKER_PASSWORD}}" | |
| - name: Set up Go 1.24 | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: 1.24 | |
| id: go | |
| - name: Check out code into the Go module directory | |
| uses: actions/checkout@v2 | |
| - name: Packages tests | |
| run: scripts/run-integration-tests.sh packages | |
| - name: Setup tmate session | |
| if: failure() | |
| uses: mxschmitt/action-tmate@v3 |