This repository was archived by the owner on Apr 15, 2025. It is now read-only.
Bump golang.org/x/net from 0.33.0 to 0.34.0 in the go_modules group across 1 directory #277
Workflow file for this run
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: Vulcanizer CI | |
| on: [push, pull_request] | |
| permissions: | |
| contents: read | |
| actions: read | |
| checks: write | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| go: [ '1.17.x', '1.22.x' ] | |
| name: Vulcanizer tests against go version ${{ matrix.go }} | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Setup go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: ${{ matrix.go }} | |
| - name: Run tests | |
| run: | | |
| sudo sysctl -w vm.max_map_count=262144 | |
| script/integration-test |