2
0

test-backend.yml 257 B

12345678910111213
  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. steps:
  9. - uses: actions/checkout@v2
  10. - uses: actions/setup-go@v2.1.4
  11. with:
  12. go-version: '^1.15.1'
  13. - run: go test ./...