Skip to content

capacitor_radial_tht: Generate 3D models #415

capacitor_radial_tht: Generate 3D models

capacitor_radial_tht: Generate 3D models #415

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 .[test]
- name: Run pytest
run: pytest
- name: Run mypy
run: mypy .
- name: Run flake8
run: flake8
- name: Run isort
run: isort --check --diff .