Update README.md #12
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: | |
- push | |
- pull_request | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: | | |
3.9 | |
3.12 | |
- name: Install dependencies | |
run: pip install --no-cache-dir -r requirements.txt | |
- name: Install dev dependencies | |
run: pip install --no-cache-dir -r requirements-dev.txt | |
- name: Lint | |
run: make lint | |
- name: Run tests | |
run: make test | |
- name: Run code quality test | |
run: make code-quality |