chore: update pre-commit hook astral-sh/ruff-pre-commit to v0.7.1 (#289) #946
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: ci | |
on: | |
pull_request: | |
branches: | |
- "master" | |
push: | |
branches: | |
- "master" | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
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 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
- uses: trim21/setup-poetry@dist/v2 | |
- uses: trim21/install-poetry-project@dist/v2 | |
- run: bash $HOME/dev-env/wait_mysql_ready.sh | |
- run: pytest --cov | |
timeout-minutes: 10 | |
env: | |
MYSQL_HOST: '127.0.0.1' | |
MYSQL_PORT: '3306' | |
MYSQL_USER: 'user' | |
MYSQL_PASS: 'password' | |
MYSQL_DB: 'bangumi' | |
- name: Upload Coverage to Codecov | |
uses: codecov/codecov-action@v4 |