mirror of
https://github.com/gumyr/build123d.git
synced 2025-12-06 02:30:55 -08:00
Merge branch 'dev' of https://github.com/gumyr/build123d into dev
This commit is contained in:
commit
ddef1c8140
2 changed files with 8 additions and 11 deletions
10
.github/actions/setup/action.yml
vendored
10
.github/actions/setup/action.yml
vendored
|
|
@ -7,16 +7,12 @@ inputs:
|
||||||
runs:
|
runs:
|
||||||
using: "composite"
|
using: "composite"
|
||||||
steps:
|
steps:
|
||||||
- name: python
|
- name: Setup Python
|
||||||
uses: actions/setup-python@v5
|
uses: actions/setup-python@v5
|
||||||
with:
|
with:
|
||||||
python-version: ${{ inputs.python-version }}
|
python-version: ${{ inputs.python-version }}
|
||||||
- name: install requirements
|
- name: Install Requirements
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
pip install wheel
|
pip install wheel mypy pytest pytest-benchmark pytest-cov pylint
|
||||||
pip install mypy
|
|
||||||
pip install pytest
|
|
||||||
pip install pytest-cov
|
|
||||||
pip install pylint
|
|
||||||
pip install .
|
pip install .
|
||||||
|
|
|
||||||
9
.github/workflows/mypy.yml
vendored
9
.github/workflows/mypy.yml
vendored
|
|
@ -9,16 +9,17 @@ jobs:
|
||||||
python-version: [
|
python-version: [
|
||||||
"3.10",
|
"3.10",
|
||||||
# "3.11",
|
# "3.11",
|
||||||
"3.12"
|
"3.12",
|
||||||
]
|
]
|
||||||
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v4
|
||||||
- uses: ./.github/actions/setup
|
- name: Setup
|
||||||
|
uses: ./.github/actions/setup
|
||||||
with:
|
with:
|
||||||
python-version: ${{ matrix.python-version }}
|
python-version: ${{ matrix.python-version }}
|
||||||
|
|
||||||
- name: typecheck
|
- name: Typecheck
|
||||||
run: |
|
run: |
|
||||||
mypy --config-file mypy.ini src/build123d
|
mypy --config-file mypy.ini src/build123d
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue