Build/CI: modernize build/doc/ci #20
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
| # This workflow runs Ruff on the PR | |
| # For more information see: https://github.com/marketplace/actions/ruff-action | |
| name: PyLops-ruff | |
| on: [push, pull_request] | |
| jobs: | |
| ruff-lint: | |
| runs-on: ubuntu-latest | |
| name: Lint | |
| steps: | |
| - name: Check out source repository | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Lint with ruff | |
| uses: astral-sh/ruff-action@v3 | |
| with: | |
| src: "./pylops" |