Skip to content

bump version

bump version #83

Workflow file for this run

name: Python application
on:
push:
branches: [ dev ]
pull_request:
branches: [ dev, master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: "3.10"
- name: Install Poetry
uses: snok/install-poetry@v1
with:
virtualenvs-create: true
virtualenvs-in-project: true
installer-parallel: true
- name: Build package
run: |
poetry --version
poetry build