Openstatus www.openstatus.dev
at 4c0f4c00a38753a5d0dfd7e7b7b7706dec6f1503 31 lines 697 B view raw
1name: Go Tests 2 3on: 4 push: 5 branches: 6 - master 7 tags: 8 - '*.*.*' 9 pull_request: 10 branches: 11 - '**' 12 paths: 13 - "apps/checker/**" 14 - "apps/private-location/**" 15 16jobs: 17 ci: 18 name: Continuous Integration 19 runs-on: depot-ubuntu-24.04-4 20 timeout-minutes: 5 21 steps: 22 - uses: actions/checkout@v4 23 - uses: actions/setup-go@v5 24 with: 25 go-version: '>=1.25.0' 26 - name: Run test Checker 27 run: go test -timeout 30s -race -count=1 ./... 28 working-directory: apps/checker 29 - name: Run test Private Location 30 run: go test -timeout 30s -race -count=1 ./... 31 working-directory: apps/private-location