Make the non-existent csr configurable #42
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
on: | |
pull_request: | |
paths: | |
- 'debug/**' | |
name: Check Debug Code Style (pylint) | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Install required packages (pip3) | |
run: | | |
pip3 install pylint | |
- name: Run pylint | |
run: make -C debug pylint |