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

34 lines
844 B
YAML
Raw Normal View History

2024-05-19 19:18:39 +00:00
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
2024-05-19 19:21:24 +00:00
pip install --no-cache-dir --index-url https://test.pypi.org/simple/ packit_llm==0.1.0
2024-05-19 19:18:39 +00:00
- 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