chore(deps): bump github.com/refraction-networking/utls from 1.7.3 to 1.8.2 #19
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: Devstack Integration Tests | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| devstack-integration: | |
| name: devstack sync test | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: '1.24.3' | |
| cache: true | |
| - name: Install just | |
| uses: extractions/setup-just@v2 | |
| - name: Run devstack integration test | |
| run: go test -v -timeout 5m -tags integration -run TestDevstackIntegration ./cmd/devstack/ |