Skip to content

axial_tht: Also generate THT resistor packages #268

axial_tht: Also generate THT resistor packages

axial_tht: Also generate THT resistor packages #268

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
tests:
name: "Python ${{ matrix.python-version }}"
runs-on: ubuntu-22.04
strategy:
matrix:
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: "${{ matrix.python-version }}"
- name: Install dependencies
run: pip install -r requirements.txt
- name: Run pytest
run: pytest
- name: Run mypy
run: mypy --strict
common.py
entities/*.py
cadquery_helpers.py
dfn_configs.py
generate*.py
test_entities.py
# test_common.py
# test_generate_connectors.py
# test_generate_qfn.py
- name: Run flake8
run: flake8
- name: Run isort
run: isort --check --diff .