This repository has been archived by the owner on Dec 20, 2024. It is now read-only.
skip training on Darwin and satisfy ruff #1871
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
--- | |
# This workflow will upload a Python Package using Twine when a release is created | |
# For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries | |
name: Code Quality checks for PRs | |
on: | |
push: | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
quality: | |
uses: ecmwf-actions/reusable-workflows/.github/workflows/qa-precommit-run.yml@v2 | |
with: | |
skip-hooks: "no-commit-to-branch" | |
checks: | |
strategy: | |
matrix: | |
python-version: ["3.10"] # ["3.9", "3.10", "3.11", "3.12"] | |
uses: ecmwf-actions/reusable-workflows/.github/workflows/qa-pytest-pyproject.yml@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
optional-dependencies: "all,tests] git+https://github.com/ecmwf/anemoi-datasets.git@bugfix/no-exceptions-for-missing-metadata timm[" |