Skip to content

Plugin for local coordinate system selectors #128

Plugin for local coordinate system selectors

Plugin for local coordinate system selectors #128

Workflow file for this run

name: lint
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [ main ]
pull_request:
branches: [ main ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# Run lint check on Linux
lint-linux:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Check out Git repo
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install Python dependencies
# CadQuery runs a customized version of black
run: |
pip install git+https://github.com/cadquery/black.git@cq
# Runs the lint check against the repo
- name: Run black
run: |
black --diff --check $GITHUB_WORKSPACE