Skip to content

Bump pylint from 2.17.6 to 3.1.0 #208

Bump pylint from 2.17.6 to 3.1.0

Bump pylint from 2.17.6 to 3.1.0 #208

Workflow file for this run

name: Test code base
on:
pull_request:
branches:
- trunk
push:
branches:
- trunk
- release-*
tags:
- v*
jobs:
test_pip_install:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
name: Test with pip install ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Run pip install
run: |
pip install .
pytest:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.8', '3.9', '3.10', '3.11']
name: Test on ${{ matrix.os }} with pytest ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install requirements
run: |
pip install ".[test]"
- name: Running tests
env:
API_KEY: ${{ secrets.API_KEY }}
run: |
pytest -s