diff --git a/.github/workflows/pylint.yml b/.github/workflows/static-checks.yml similarity index 90% rename from .github/workflows/pylint.yml rename to .github/workflows/static-checks.yml index 35a62077..63c7e5da 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/static-checks.yml @@ -1,11 +1,11 @@ -name: Pylint +name: Static checks on: - push - pull_request jobs: - lint-ruff: + static-checks: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 diff --git a/.github/workflows/pytest.yml b/.github/workflows/test.yml similarity index 76% rename from .github/workflows/pytest.yml rename to .github/workflows/test.yml index 30e5f7be..c6327bd0 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/test.yml @@ -1,7 +1,4 @@ -# This workflow will install Python dependencies, run tests and lint with a single version of Python -# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions - -name: PyTest +name: Tests on: push: