feature(datashare-python): add task id to manifest #244
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: Test workflows-worker | |
| on: | |
| push: | |
| branches: [ 'main' ] | |
| pull_request: | |
| paths: | |
| - 'workers/workflows-worker/**' | |
| env: | |
| PYTHON_VERSION: 3.12 | |
| ASTRAL_VERSION: 0.11.6 | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: astral-sh/ruff-action@v4.1.0 | |
| with: | |
| args: "--version" # skips test by displaying the version | |
| version: "0.16.1" | |
| - name: Check formatting | |
| run: ruff format --config qa/ruff.toml --check workers/workflows-worker | |
| - name: Lint test | |
| run: ruff check --config qa/ruff.toml workers/workflows-worker | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true |