Cleaner separation into lib and cli #415
Workflow file for this run
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: linting | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
linting: | |
name: py${{ matrix.python-version }} on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: ['ubuntu-latest'] | |
python-version: ['3.11'] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Show python info | |
run: | | |
which python3 | |
python3 --version | |
- name: Upgrade pip, setuptools and wheel | |
run: | | |
python3 -m pip install --upgrade pip setuptools wheel | |
- name: Install runtime dependencies | |
run: python3 -m pip install . | |
- name: Install development dependencies | |
run: python3 -m pip install .[dev,gcloud,testing] | |
- name: Check sorting of imports | |
run: isort --check-only --diff src/cffconvert test/ | |
- name: Run prospector | |
run: prospector --profile-path .prospector.yml |