This repository has been archived by the owner on Jan 2, 2025. It is now read-only.
refactor(backend): optimize database indices and queries for blob met… #2550
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test Go | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- ".github/workflows/test-go.yml" | |
- "go.mod" | |
- "backend/**" | |
pull_request: | |
paths: | |
- ".github/workflows/test-go.yml" | |
- "go.mod" | |
- "backend/**" | |
branches-ignore: | |
- "renovate/**" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test-go: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: "1.20" | |
- run: go test -p 1 ./backend/... |