1
0
Fork 0
taleweave-ai/.github/workflows/python-build.yml

35 lines
803 B
YAML

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/codecov-action@v4.0.1
# with:
# token: ${{ secrets.CODECOV_TOKEN }}
# slug: ssube/taleweaveai