Skip to content

build(deps): bump golang.org/x/net from 0.17.0 to 0.18.0 #647

build(deps): bump golang.org/x/net from 0.17.0 to 0.18.0

build(deps): bump golang.org/x/net from 0.17.0 to 0.18.0 #647

Workflow file for this run

name: test
on:
push:
branches: ['main']
pull_request:
branches-ignore: ['gh-pages']
env:
WIREMOCK_URL: http://127.0.0.1:8080
WIREMOCK_PORT: 8080
jobs:
test:
strategy:
matrix:
go: ['1.20', '1.21']
runs-on: ubuntu-latest
services:
wiremock:
image: wiremock/wiremock
options: --name wiremock
ports:
- 8080:8080
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
persist-credentials: false
- name: Install Go ${{ matrix.go }}
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}
check-latest: false
cache: true
- name: Setup Wiremock
shell: bash
run: ${GITHUB_WORKSPACE}/scripts/setup_wiremock.sh
- name: Run tests
run: go test ./... -coverprofile=coverage.txt -covermode=count
- name: Run lint
uses: golangci/golangci-lint-action@v3