Update Readme #7
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 Pipeline | |
on: | |
push: | |
branches: [ main, develop ] | |
pull_request: | |
branches: [ main, develop ] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.12' | |
cache: 'pip' | |
- name: Create virtual environment | |
run: make venv/create | |
- name: Install dependencies | |
run: | | |
make venv/install/all | |
- name: Run linters | |
run: make lint | |
- name: Run tests | |
env: | |
PYTHONPATH: ${PYTHONPATH}:. | |
run: make test |