Skip to content

Seeing if cadquery master can be installed via conda #64

Seeing if cadquery master can be installed via conda

Seeing if cadquery master can be installed via conda #64

Workflow file for this run

name: Lint
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: conda-incubator/setup-miniconda@v3
with:
activate-environment: lint
python-version: 3.11
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[dev]
- name: Run lint check
run: |
black --diff --check .