update registerhandling to use i1* pointer #415
Workflow file for this run
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: Lint python projects | |
on: | |
pull_request: | |
branches: | |
- main | |
- develop | |
push: | |
branches: | |
- develop | |
- 'wheel/**' | |
- 'runci/**' | |
jobs: | |
lint: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python 3.x | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.x' | |
- name: Update pip | |
run: pip install --upgrade pip | |
- name: Install formatters and linters | |
run: pip install black~=23.7 pylint~=2.17 ruff==0.0.282 | |
- name: Check files are formatted with black | |
run: | | |
black --check . | |
- name: Run ruff | |
run: | | |
ruff check . | |
- name: Run pylint | |
run: | | |
pylint */ |