Skip to content

Bump the pip group across 1 directory with 2 updates #17

Bump the pip group across 1 directory with 2 updates

Bump the pip group across 1 directory with 2 updates #17

Workflow file for this run

name: PR build
on:
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
pr-build-poetry:
name: PR Build with Poetry
runs-on: [self-hosted, linux, X64]
container:
image: starwitorg/base-python-image:3.14.0-py3.14-ptr2.3.4
volumes:
- /home/githubrunner/.cache/pypoetry:/root/.cache/pypoetry
steps:
#----------------------------------------------
# check-out repo and set-up python
#----------------------------------------------
- name: Check out repository
uses: actions/checkout@v7
- name: Setup
run: |
python --version
poetry --version
#----------------------------------------------
# install your root project, if required
#----------------------------------------------
- name: Install project
run: |
poetry config cache-dir /root/.cache/pypoetry
bash -c "make test"