Openstatus www.openstatus.dev

Feat/ci (#738)

* feat: update Dockerfile

* feat: do not panic

* feat: test checker within CI

authored by

Arthur EICHELBERGER and committed by
GitHub
fee643fe 631acb75

+25
+25
.github/workflows/checker.yaml
··· 1 + name: Checker CI 2 + 3 + on: 4 + push: 5 + branches: 6 + - master 7 + tags: 8 + - '*.*.*' 9 + pull_request: 10 + branches: 11 + - '**' 12 + 13 + jobs: 14 + ci: 15 + name: Continuous Integration 16 + runs-on: ubuntu-latest 17 + timeout-minutes: 5 18 + steps: 19 + - uses: actions/checkout@v4 20 + - uses: actions/setup-go@v5 21 + with: 22 + go-version: '>=1.22.0' 23 + - name: Run test 24 + run: go test -timeout 30s -race -count=1 ./... 25 + working-directory: apps/checker