Skip to content

build(deps): bump the actions-deps group with 3 updates #1462

build(deps): bump the actions-deps group with 3 updates

build(deps): bump the actions-deps group with 3 updates #1462

Workflow file for this run

name: test
on:
push:
branches: ['main']
pull_request:
branches-ignore: ['gh-pages']
permissions: {}
env:
GOTOOLCHAIN: local
WIREMOCK_URL: http://127.0.0.1:8080
WIREMOCK_PORT: 8080
jobs:
test:
strategy:
matrix:
go: ['1.25', '1.26']
runs-on: ubuntu-latest
services:
wiremock:
image: wiremock/wiremock
options: --name wiremock
ports:
- 8080:8080
steps:
- name: Checkout code
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- name: Install Go ${{ matrix.go }}
uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e # v7.0.0
with:
go-version: ${{ matrix.go }}
check-latest: true
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@ba0d7d2ec06a0ea1cb5fa41b2e4a3ab91d21278a # v9.3.0