test-backend.yml 246 B

123456789101112
  1. name: Backend CI
  2. on:
  3. - pull_request
  4. jobs:
  5. backend-tests:
  6. name: Run Go tests
  7. runs-on: ubuntu-latest
  8. - uses: actions/checkout@v2
  9. - uses: actions/setup-go@v2.1.4
  10. with:
  11. go-version: '^1.15.1'
  12. - run: go test ./...