Skip to content

chore: add ci 👷

chore: add ci 👷 #1

Workflow file for this run

name: ci_go

Check failure on line 1 in .github/workflows/ci_go.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci_go.yml

Invalid workflow file

No steps defined in `steps` and no workflow called in `uses` for the following jobs: example_matrix
on: [push, pull_request]
jobs:
example_matrix:
strategy:
matrix:
go_version: [ '1.20', '1.19' ]
os: [ ubuntu-latest, windows-latest ]
go:
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 test ./... -cover