Skip to content

🐛 fix: installing python and pipx #5

🐛 fix: installing python and pipx

🐛 fix: installing python and pipx #5

Workflow file for this run

name: build-python
on: push
jobs:
build-linux-x86_64:
name: Build for Linux on x86_64
runs-on: ubuntu-20.04
strategy:
matrix:
python:
- 3.13.0
steps:
- uses: actions/[email protected]
with:
fetch-depth: 0
submodules: "recursive"
- name: Install python
uses: gabrielfalcao/pyenv-action@main
with:
default: "${{ matrix.python }}"
command: pip install -U pip # upgrade pip after installing python
- name: Install deps
run: |
python3.13 -m pip install pipx
pipx install poetry poethepoet
pipx inject poetry "poetry-dynamic-versioning[plugin]"
- name: Build project
run: poe build
- name: Upload build artifact
uses: actions/[email protected]
with:
name: linux-x86_64-artifact