Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions .github/workflows/code-checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,11 @@ jobs:
with:
python-version: '3.11.10'
- name: Install poetry
run: pip install poetry
run: |
POETRY_VERSION=$(grep -E '^requires-poetry = ' pyproject.toml | sed -E 's/requires-poetry = "(.*)"/\1/')
pip install poetry==$POETRY_VERSION
- name: Install dependencies
run: python -m poetry install
run: poetry install
- name: Ruff check
run: poetry run ruff check .
- name: Ruff format check
Expand All @@ -36,9 +38,11 @@ jobs:
with:
python-version: '3.11.10'
- name: Install poetry
run: pip install poetry
run: |
POETRY_VERSION=$(grep -E '^requires-poetry = ' pyproject.toml | sed -E 's/requires-poetry = "(.*)"/\1/')
pip install poetry==$POETRY_VERSION
- name: Install dependencies
run: python -m poetry install
run: poetry install
- name: configure AWS
uses: aws-actions/configure-aws-credentials@v4
with:
Expand Down