Skip to content

chore(go): update direct dependencies #368

chore(go): update direct dependencies

chore(go): update direct dependencies #368

Workflow file for this run

name: testing
on:
push:
paths:
- "commands/**.go"
- "internal/**/*.go"
- "pkg/**/*.go"
- "cmd/*/*.go"
- "go.*"
pull_request:
paths:
- "commands/**.go"
- "internal/**/*.go"
- "pkg/**/*.go"
- "cmd/*/*.go"
- "go.*"
jobs:
testing:
runs-on: ubuntu-latest
strategy:
matrix:
go: [1.20.x]
name: Go ${{ matrix.go }} check
steps:
- uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29
with:
go-version: ${{ matrix.go }}
- run: go test -failfast ./...