Skip to content

bump lock file

bump lock file #9

name: Build and Install
on:
push:
branches:
- '**'
jobs:
build-install:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
- name: Install dependencies
run: |
python3 -m pip install setuptools
poetry install --with dev
- name: Package with Poetry
run: |
# clear out dist folder first
rm -rf dist
poetry build
- name: Install Built Package
run: |
python3 -m pip install dist/*.whl
- name: Test Installation
run: |
petdeface --version
mergetacs --help