Skip to content

fix(deps): update module golang.org/x/text to v0.42.0 (#146) #867

fix(deps): update module golang.org/x/text to v0.42.0 (#146)

fix(deps): update module golang.org/x/text to v0.42.0 (#146) #867

Workflow file for this run

name: Go Build & Test
on:
push:
pull_request:
workflow_call:
jobs:
build:
runs-on: ${{ matrix.os }}
permissions:
contents: read
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v7
- name: Set up Go
uses: actions/setup-go@v7
with:
go-version: "1.26.6"
cache: true
- name: go vet
run: go vet ./...
- name: Build
run: go build -v ./cmd/rdctl-bot
- name: Test
run: go test ./...