Skip to content

Merge pull request #378 from andreaschrader/main #491

Merge pull request #378 from andreaschrader/main

Merge pull request #378 from andreaschrader/main #491

Workflow file for this run

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@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
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
# isort returns zero even when there are problems, explicitly check there is no output
run: |
output=$(isort --check-only --diff src/cffconvert tests/)
if [[ -n "$output" ]]; then
exit 1
else
exit 0
fi
- name: Run prospector
run: prospector --profile-path .prospector.yml