test.yml 327 B

123456789101112131415161718
  1. name: Test
  2. on:
  3. push:
  4. branches: [main]
  5. pull_request:
  6. types: [opened, synchronize, reopened]
  7. jobs:
  8. test:
  9. runs-on: ubuntu-latest
  10. steps:
  11. - uses: actions/checkout@v3
  12. - uses: actions/setup-go@v4
  13. with:
  14. go-version: 1.19.x
  15. cache: true
  16. - run: go test -v -cover ./...