Skip to content

linters

linters #794

Workflow file for this run

---
name: linters
on:
pull_request:
push:
# Run the functional tests every 8 hours.
# This will help to identify faster if
# there is a CI failure related to a
# change in any dependency.
schedule:
- cron: '0 */8 * * *'
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: [3.11]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
cache-dependency-path: './test-requirements.txt'
- name: Install dependencies
run: |
set -x
pip install -r test-requirements.txt
- name: Run Linters
run: |
tox -e linters