Skip to content

feat: add clear_at_exit setting and pause and resume methods #48

feat: add clear_at_exit setting and pause and resume methods

feat: add clear_at_exit setting and pause and resume methods #48

Workflow file for this run

---
name: Build
on: [push, pull_request]
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
build_wheels:
name: Build wheels on ${{ matrix.os }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install Poetry
uses: snok/install-poetry@v1
with:
virtualenvs-create: true
virtualenvs-in-project: true
installer-parallel: true
- name: Load cached venv
id: cached-poetry-dependencies
uses: actions/cache@v3
with:
path: .venv
key:
venv-${{ runner.os }}-${{
steps.setup-python.outputs.python-version}}-${{
hashFiles('**/poetry.lock') }}
- name: Build
run: poetry build
- name: Upload
uses: actions/upload-artifact@v3
with:
path: ./dist/*.whl