Skip to content

Bug fix in ROSA HCP filter #163

Bug fix in ROSA HCP filter

Bug fix in ROSA HCP filter #163

Workflow file for this run

name: Check poetry lockfile
on: [ pull_request ]
jobs:
build:
name: Check Poetry Lockfile
runs-on: ubuntu-20.04
steps:
# Step 1: Check out the repository
- uses: actions/checkout@v3
# Step 2: Set up Python
- uses: actions/setup-python@v4
with:
python-version: "3.11"
# Step 3: Install Poetry
- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
echo "::add-path::${HOME}/.local/bin"
# Step 4: Verify Poetry installation
- name: Verify Poetry installation
run: poetry --version
working-directory: ./backend
# Step 5: Verify Poetry lockfile
- name: Verify Poetry lockfile
run: poetry lock --check
working-directory: ./backend