Skip to content

chore: upgrade cadquery ^2.3.1 -> ^2.4.0 #95

chore: upgrade cadquery ^2.3.1 -> ^2.4.0

chore: upgrade cadquery ^2.3.1 -> ^2.4.0 #95

Workflow file for this run

name: lint
on: [push]
jobs:
lint:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.9"
- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
poetry --version
- name: Install dependencies
run: poetry install --no-interaction
- name: Lint Python files
run: poetry run make lint-python
- name: Lint shell scripts
run: |
sudo apt-get -y install shellcheck
make lint-shell
- name: Lint commit messages
run: poetry run make lint-commit-messages