implemented half lap joint #165
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build-cpython: | |
if: "!contains(github.event.pull_request.labels.*.name, 'docs-only')" | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
python: ['3.7', '3.8', '3.9', '3.10'] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Installing Python${{ matrix.python }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Installing dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install compas@git+https://github.com/compas-dev/compas@main # TODO: remove once new `Part` is released. | |
- name: Installing package | |
run: | | |
python -m pip install --no-cache-dir -r requirements-dev.txt | |
- name: Running linter | |
run: | | |
invoke lint | |
- name: Running unit-tests | |
run: | | |
invoke test | |
build-ironpython: | |
if: "!contains(github.event.pull_request.labels.*.name, 'docs-only')" | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Installing dependencies | |
run: | | |
curl -o compas.tar.gz -LJO https://github.com/compas-dev/compas/tarball/main | |
curl -o ironpython-pytest.tar.gz -LJO https://pypi.debian.net/ironpython-pytest/latest | |
choco install ironpython --version=2.7.8.1 | |
ipy -X:Frames -m ensurepip | |
ipy -X:Frames -m pip install --no-deps compas.tar.gz | |
ipy -X:Frames -m pip install --no-deps ironpython-pytest.tar.gz | |
- name: Running unit-tests | |
env: | |
IRONPYTHONPATH: ./src | |
run: | | |
ipy tests/ipy_test_runner.py |