Raw image logo cuallee in README #382
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 | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: 'actions/checkout@v3' | |
- name: Setup Python | |
uses: actions/setup-python@master | |
with: | |
python-version: 3.11 | |
- name: Authenticate google cloud | |
uses: 'google-github-actions/auth@v1' | |
with: | |
credentials_json: ${{ secrets.GOOGLE_KEY }} | |
- name: Generate coverage report | |
run: | | |
pip install --upgrade pip | |
pip install '.[test,snowpark,pyspark,pandas,duckdb,bigquery,polars,dagster,cloud,pdf,daft]' | |
coverage run -m pytest --ignore=test/unit/bigquery test/unit | |
coverage xml -o coverage.xml | |
env: | |
SF_ACCOUNT: ${{ secrets.SF_ACCOUNT }} | |
SF_USER: ${{ secrets.SF_USER }} | |
SF_PASSWORD: ${{ secrets.SF_PASSWORD }} | |
SF_ROLE: ${{ secrets.SF_ROLE }} | |
SF_WAREHOUSE: ${{ secrets.SF_WAREHOUSE }} | |
SF_DATABASE: ${{ secrets.SF_DATABASE }} | |
SF_SCHEMA: ${{ secrets.SF_SCHEMA }} | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
directory: . | |
env_vars: OS,PYTHON | |
fail_ci_if_error: true | |
files: coverage.xml | |
flags: unittests | |
name: codecov-umbrella | |
verbose: true | |
docs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: 3.x | |
- run: pip install mkdocs-material mkdocstrings[python] | |
- run: mkdocs gh-deploy --force |