Skip to content

Add tests for checkin and sync of an inventory with a host with no ho… #39

Add tests for checkin and sync of an inventory with a host with no ho…

Add tests for checkin and sync of an inventory with a host with no ho… #39

Workflow file for this run

name: PythonPackage
on:
push:
tags:
- "*"
jobs:
publish:
name: Build and Deploy to PyPi
runs-on: ubuntu-latest
strategy:
matrix:
# build/push in lowest support python version
python-version: [ 3.9 ]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Setup and Build
run: |
pip install -U pip
pip install .[setup]
python setup.py sdist bdist_wheel
python -m twine check dist/*
- name: Build and publish
uses: pypa/[email protected]
with:
user: __token__
password: ${{ secrets.PYPI_TOKEN }}
skip_existing: true