sort systems into folders #28
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: Run Python Build | |
on: | |
push: | |
branches: [main] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
OPENAI_API_KEY: "none" | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v3 | |
with: | |
python-version: '3.x' | |
- name: Install dev dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements/dev.txt -r requirements/base.txt | |
env: | |
GIT_CLONE_PROTECTION_ACTIVE: false | |
- name: Check style | |
run: make lint-check | |
- name: Run tests | |
run: make test | |
# name: Upload coverage reports to Codecov | |
# uses: codecov/[email protected] | |
# with: | |
# token: ${{ secrets.CODECOV_TOKEN }} | |
# slug: ssube/taleweaveai |