chore(deps): bump google.golang.org/grpc from 1.78.0 to 1.79.3 #169
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: Test Modules | |
| on: | |
| pull_request: | |
| branches: | |
| - "**" | |
| push: | |
| branches: | |
| - "dev" | |
| - "wg" | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| env: | |
| GOTOOLCHAIN: auto | |
| steps: | |
| - name: Checkout codebase | |
| uses: actions/checkout@v4 | |
| - name: Set up Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: "1.25.7" | |
| check-latest: true | |
| - name: Get project dependencies | |
| run: make deps | |
| - name: Install xray-core | |
| run: make install_xray | |
| - name: install wg | |
| run: make install_wg | |
| - name: Create certificate | |
| run: | | |
| mkdir -p certs | |
| make generate_server_cert | |
| make generate_client_cert | |
| - name: Run regular test suite | |
| run: TEST_INTEGRATION=true go test ./... -v -p 1 | |
| - name: Run wireguard integration tests | |
| run: sudo -E make test-integration-wireguard |