Add outline logo to support both dark and light mode display #156
This file contains hidden or 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: Pylint | |
| on: | |
| push: | |
| branches: | |
| - "master" | |
| - "main" | |
| pull_request: | |
| branches: | |
| - "master" | |
| - "main" | |
| workflow_dispatch: | |
| jobs: | |
| pylint: | |
| name: Pylint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.x" | |
| - name: Install Poetry | |
| run: | | |
| python -m pip install --upgrade poetry wheel | |
| - name: Install dependencies | |
| run: | | |
| poetry install | |
| - name: Analysing the code with pylint | |
| run: | | |
| poetry run pylint ./flowpipe |