perf: improve tag count #2369
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 | |
on: | |
push: | |
branches-ignore: | |
- renovate/** | |
paths: | |
- ".github/workflows/test.yaml" | |
- "go.mod" | |
- "go.sum" | |
- "Taskfile.yaml" | |
- "**.go" | |
- "**.go.json" | |
pull_request: | |
branches: | |
- master | |
paths: | |
- ".github/workflows/test.yaml" | |
- "go.mod" | |
- "go.sum" | |
- "Taskfile.yaml" | |
- "**.go" | |
- "**.go.json" | |
jobs: | |
test: | |
runs-on: ubuntu-24.04 | |
steps: | |
- run: git clone https://github.com/bangumi/dev-env $HOME/dev-env | |
- run: cd ~/dev-env && docker compose up -d | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Install Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: "go.mod" | |
cache: false | |
- name: Install Task | |
uses: arduino/setup-task@v2 | |
with: | |
repo-token: "${{ secrets.GITHUB_TOKEN }}" | |
- name: Go Build Cache (test) | |
uses: actions/cache@v4 | |
with: | |
path: | | |
~/.cache/go-build | |
~/go/pkg | |
key: go-cache-122-${{ hashFiles('**/go.sum') }}-test | |
restore-keys: | | |
go-cache-122-${{ hashFiles('**/go.sum') }}- | |
go-cache-122- | |
- run: go get -t ./... | |
- run: bash $HOME/dev-env/wait_mysql_ready.sh | |
- name: Check Gorm gen | |
run: | | |
task gorm | |
git diff --exit-code | |
- name: Run tests | |
run: task coverage | |
env: | |
GORACE: halt_on_error=1 | |
MYSQL_HOST: 127.0.0.1 | |
MYSQL_PORT: "3306" | |
MYSQL_USER: user | |
MYSQL_PASS: password | |
MYSQL_DB: bangumi | |
REDIS_URI: "redis://:redis-pass@127.0.0.1:6379/0" | |
- uses: codecov/codecov-action@v4 | |
with: | |
files: coverage.out | |
token: ${{ secrets.CODECOV_TOKEN }} # required |