2024-01-22 23:13:04 +08:00
|
|
|
name: tests
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ "main" ]
|
|
|
|
pull_request:
|
|
|
|
branches: [ "main" ]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
check_code_quality:
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2024-02-07 01:18:22 +08:00
|
|
|
- uses: actions/checkout@v4
|
2024-01-22 23:13:04 +08:00
|
|
|
|
2024-01-22 23:22:15 +08:00
|
|
|
- name: Set up Python
|
2024-02-07 01:18:22 +08:00
|
|
|
uses: actions/setup-python@v5
|
2024-01-22 23:22:15 +08:00
|
|
|
with:
|
|
|
|
python-version: "3.8"
|
|
|
|
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
python -m pip install --upgrade pip
|
2024-02-26 17:25:47 +08:00
|
|
|
python -m pip install ruff
|
2024-01-22 23:22:15 +08:00
|
|
|
|
|
|
|
- name: Check quality
|
|
|
|
run: |
|
|
|
|
make style && make quality
|