Skip to content

chore: 👷 (#40,#47) finish fixing the issue and ad… #212

chore: 👷 (#40,#47) finish fixing the issue and ad…

chore: 👷 (#40,#47) finish fixing the issue and ad… #212

Workflow file for this run

name: ci_go
on:
push:
branches:
- '!main'
pull_request:
workflow_call:
jobs:
go:
strategy:
matrix:
go_version: [ '1.20' ]
os: [ ubuntu-latest, windows-latest, macos-latest ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go_version }}
- run: go build -o dist/
- run: go vet ./...
- run: go test ./... -cover