Skip to content

ci(github): remove "-v" flag from "go test" command #12

ci(github): remove "-v" flag from "go test" command

ci(github): remove "-v" flag from "go test" command #12

Workflow file for this run

name: Validation
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
go-version: [ '1.21', '1.22' ]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Download dependencies
run: go mod download -x
- name: Test
run: go test ./...