Skip to content

Continuous Integration: Lint (on refs/pull/111/merge) #425

Continuous Integration: Lint (on refs/pull/111/merge)

Continuous Integration: Lint (on refs/pull/111/merge) #425

Workflow file for this run

run-name: "Continuous Integration: Lint (on ${{ github.ref }})"
on:
pull_request:
branches:
- main
# Allows only one instance of this workflow to run for a ref
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
# Since all our jobs run in a container, we must explicitly set the default
# shell, otherwise, Github Actions uses sh
defaults:
run:
shell: bash
jobs:
Lint:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.10', '3.11', '3.12' ]
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[dev]
working-directory: ./
- name: Lint
run: ./scripts/lint.sh