Skip to content

chore(version): 1.2.0 #16

chore(version): 1.2.0

chore(version): 1.2.0 #16

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ["1.22"]
steps:
- uses: actions/checkout@v4
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
cache-dependency-path: go.sum
- name: Display Go version
run: go version
- name: Install dependencies
run: go mod download
- name: Run test
run: go test -v -cover -test.count=1 ./...