Skip to content

[DEPENDABOT]: Bump argcomplete from 3.2.3 to 3.5.0 #1430

[DEPENDABOT]: Bump argcomplete from 3.2.3 to 3.5.0

[DEPENDABOT]: Bump argcomplete from 3.2.3 to 3.5.0 #1430

Workflow file for this run

name: Build spapros Package
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
if: "!contains(github.event.head_commit.message, '[skip ci]') && !contains(github.event.head_commit.message, '[ci skip]')"
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
python: ["3.9", "3.10"]
steps:
- uses: actions/checkout@v4.1.7
name: Check out source-code repository
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Upgrade pip
run: |
pip install --upgrade pip
pip --version
- name: Install Poetry
run: |
pip install poetry
poetry --version
- name: Build package
run: poetry build --ansi
- name: Install required twine packaging dependencies
run: pip install setuptools wheel twine
- name: Check twine package
run: twine check dist/*