Skip to content

build(deps): bump golang.org/x/text in the gomod group (#37) #113

build(deps): bump golang.org/x/text in the gomod group (#37)

build(deps): bump golang.org/x/text in the gomod group (#37) #113

Workflow file for this run

---
name: test
on:
push:
branches: [main, release-*]
pull_request:
jobs:
build:
name: Build and test on go ${{ matrix.go_version }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
go_version: [stable, oldstable]
os: [ubuntu-latest, macOS-latest, windows-latest]
steps:
- name: Check out code
uses: actions/checkout@v6.0.1
with:
fetch-depth: 0
- name: Set up Go ${{ matrix.go_version }}
uses: actions/setup-go@v6.1.0
with:
go-version: ${{ matrix.go_version }}
- name: Get dependencies
run: go mod download
- name: Test
run: make test