Skip to content

Update unit tests

Update unit tests #6

Workflow file for this run

name: build and publish
'on':
workflow_dispatch: {}
push:
branches:
- main
jobs:
pypi-publish:
name: Upload release to PyPI
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/p/nebari-plugin-mlflow-aws
permissions:
id-token: write
steps:
- name: Checkout Image
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install Hatch
run: pip install hatch
- name: Build
run: hatch build
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1