chore(deps): update dependency pylint to v3 - autoclosed #209
Workflow file for this run
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: Pull Request | |
| on: | |
| push: | |
| branches: | |
| - renovate/** | |
| pull_request: | |
| branches: | |
| - main | |
| env: | |
| PYTHON: python | |
| jobs: | |
| cancel_previous: | |
| name: 'Cancel Previous Runs' | |
| runs-on: ubuntu-22.04 | |
| timeout-minutes: 3 | |
| steps: | |
| - uses: ydataai/[email protected] | |
| with: | |
| ignore_sha: true | |
| access_token: ${{ secrets.ACCESS_TOKEN }} | |
| validate: | |
| name: Validate | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Python 3.10 | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.10' | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| python -m pip install -r requirements-dev.txt | |
| python -m pip install ydata-core | |
| - name: Lint | |
| run: make lint PYTHON=$PYTHON | |
| - name: Test | |
| run: make test PYTHON=$PYTHON |