Skip to content

remove eol python37 from workflow matrix #417

remove eol python37 from workflow matrix

remove eol python37 from workflow matrix #417

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@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