chore(deps-dev): bump ruff from 0.4.9 to 0.5.0 (#338) #942
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
name: "Validations" | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: | |
- main | |
permissions: | |
contents: read | |
env: | |
PYTHON_VERSION: "3.11" | |
POETRY_VERSION: "1.3.2" | |
jobs: | |
# note: changing the job name requires a quality gate reference change in .github/workflows/release.yaml | |
validations: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.0 | |
with: | |
python-version: ${{ env.PYTHON_VERSION }} | |
- name: Install poetry | |
uses: abatilo/actions-poetry@d79ef3c982151168214cfbd228e0b76cf7f14cae # v2.3.0 | |
with: | |
poetry-version: ${{ env.POETRY_VERSION }} | |
- name: Cache Poetry virtualenv | |
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 | |
id: cache | |
with: | |
path: ~/.virtualenvs | |
key: python-${{ env.PYTHON_VERSION }}-poetry-${{ env.POETRY_VERSION }}-${{ hashFiles('poetry.lock') }} | |
restore-keys: | | |
python-${{ env.PYTHON_VERSION }}-poetry-${{ env.POETRY_VERSION }} | |
- name: Setup Poetry config | |
run: | | |
poetry config virtualenvs.in-project false | |
poetry config virtualenvs.path ~/.virtualenvs | |
- name: Install dependencies and package | |
run: poetry install | |
if: steps.cache.outputs.cache-hit != 'true' | |
- name: Run static analysis | |
run: poetry run make static-analysis | |
- name: Run unit tests | |
run: poetry run make unit | |
- name: Build test | |
run: poetry run make build | |
- name: Run CLI tests | |
run: make cli |