Skip to content

build(deps): bump golang.org/x/net from 0.26.0 to 0.27.0 #1650

build(deps): bump golang.org/x/net from 0.26.0 to 0.27.0

build(deps): bump golang.org/x/net from 0.26.0 to 0.27.0 #1650

Workflow file for this run

name: Tests
on:
push:
pull_request:
jobs:
build:
strategy:
matrix:
go-version:
- "1.21"
- "1.22"
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Setup env
run: |
echo "GOPATH=$GITHUB_WORKSPACE" >> $GITHUB_ENV
echo "CURRENT_WORKSPACE=$GITHUB_WORKSPACE/src/github.com/${{ github.repository }}" >> $GITHUB_ENV
echo "$GITHUB_WORKSPACE/bin" >> $GITHUB_PATH
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Check out code into the Go module directory
uses: actions/checkout@v4
with:
path: ${{ env.CURRENT_WORKSPACE }}
- name: Get dependencies
run: go get -v ./...
working-directory: ${{ env.CURRENT_WORKSPACE }}
- name: Run go vet
run: go vet ./...
working-directory: ${{ env.CURRENT_WORKSPACE }}
- name: Run tests
run: ./test.sh
working-directory: ${{ env.CURRENT_WORKSPACE }}
- uses: codecov/codecov-action@v4
with:
files: ${{ env.CURRENT_WORKSPACE }}/coverage.txt
verbose: true