Skip to content

Merge pull request #134 from LibrePCB/3d-smt-diodes #397

Merge pull request #134 from LibrePCB/3d-smt-diodes

Merge pull request #134 from LibrePCB/3d-smt-diodes #397

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 .