Skip to content

add gh pypi publish action #17

add gh pypi publish action

add gh pypi publish action #17

Workflow file for this run

name: CI
on:
push:
branches:
- dev
- master
pull_request:
release:
types: [published]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
- name: Install and test
run: |
poetry install
poetry run pytest -vv