Skip to content

Working... possibly? #8

Working... possibly?

Working... possibly? #8

Workflow file for this run

# name: Release
# on:
# release:
# types: [published]
# jobs:
# release:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v3
# - name: Output Python version
# id: python-version
# run: |
# echo "::set-output name=python-version::$(cat .python-version)"
# - uses: actions/[email protected]
# with:
# python-version: ${{ steps.python-version.outputs.python-version }}
# architecture: x64
# - name: Install and configure Poetry
# run: |
# pip install poetry==1.5.*
# poetry config virtualenvs.in-project true
# - name: Set up cache
# uses: actions/[email protected]
# with:
# path: .venv
# key: venv-${{ runner.os }}-poetry-${{ hashFiles('**/poetry.lock') }}
# - name: Install dependencies
# run: poetry install
# - name: Run pytest
# run: poetry run pytest .
# - name: Build artifacts
# run: poetry build
# - name: Publish to PyPI
# run: poetry publish --username=__token__ --password=${{ secrets.PYPI_TOKEN }}