Skip to content

cadquery -> build123d #4

cadquery -> build123d

cadquery -> build123d #4

Workflow file for this run

name: tests
on:
push:
branches:
- main
pull_request:
jobs:
linting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install dependencies
run: |
make install dev=true
- name: Check linting
run: |
make lint
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install dependencies
run: |
make install dev=true
- name: Run tests
run: |
make test