Skip to content

Add get_active_targets function #55

Add get_active_targets function

Add get_active_targets function #55

Workflow file for this run

name: Lint
on:
push:
paths-ignore:
- 'docs/**'
pull_request:
paths-ignore:
- 'docs/**'
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.12']
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Lint with ruff
run: |
pip install ruff
ruff src/too tests/
- name: Lint with black
run: |
pip install black
black --check src/too tests/