Skip to content

Use of sdk and unittesting (#6) #29

Use of sdk and unittesting (#6)

Use of sdk and unittesting (#6) #29

Workflow file for this run

name: Testing
on:
push
jobs:
checkout-code:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- uses: pre-commit/action@v3.0.0
- uses: pre-commit-ci/lite-action@v1.0.1
if: always()
testing:
runs-on: ubuntu-latest
needs: checkout-code
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- run: python3 -m pip install --upgrade pip
- run: pip install -e '.[test]'
- env:
KAGGLE_JSON: ${{ secrets.KAGGLE_JSON }}
run: pytest tests/