Skip to content

update

update #531

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- master
- 'dev/**'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.9]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Lint with flake8
run: |
python -m pip install --upgrade pip
pip install flake8
flake8
- name: Search for broken links in docs
run: |
pip install pkgmt
# pkgmt check-links
- name: Install dependencies
run: |
pip install invoke
pip install .
# check package is importable
python -c "import soopervisor"
python -c "import soopervisor.cli"
pip install -e tests/assets/my_project
pip install ".[dev]"
# one of airflow's dependencies is downgrading clic, which breaks ploomber
pip install click --upgrade
- name: Test with pytest
env:
PLOOMBER_STATS_ENABLED: false
run: |
invoke test