Bug fix in ROSA HCP filter #163
Workflow file for this run
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: 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 |