Micro-service for file storage and processing written in Go
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
349 B

3 years ago
  1. name: Go
  2. on:
  3. push:
  4. branches: [ main ]
  5. pull_request:
  6. branches: [ main ]
  7. jobs:
  8. build:
  9. runs-on: ubuntu-latest
  10. steps:
  11. - uses: actions/checkout@v2
  12. - name: Set up Go
  13. uses: actions/setup-go@v2
  14. with:
  15. go-version: 1.17
  16. - name: Build
  17. run: go build -v .
  18. - name: Test
  19. run: go test -v .