diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml new file mode 100644 index 0000000..b179ce8 --- /dev/null +++ b/.github/workflows/python-publish.yml @@ -0,0 +1,51 @@ +name: Publish Python Package + +on: + release: + types: [created] + +jobs: + test: + runs-on: ubuntu-latest + strategy: + matrix: + python-version: ["3.8", "3.9", "3.10", "3.11"] + steps: + - uses: actions/checkout@v4 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v5 + with: + python-version: ${{ matrix.python-version }} + cache: pip + cache-dependency-path: '**/pyproject.toml' + - name: Install poetry + run: | + python -m pip install poetry + - name: Install poetry + run: | + poetry install --with dev + - name: Run tests + run: | + poetry run pytest + deploy: + runs-on: ubuntu-latest + needs: [test] + environment: release + permissions: + id-token: write + steps: + - uses: actions/checkout@v4 + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: '3.11' + cache: pip + cache-dependency-path: '**/pyproject.toml' + - name: Install dependencies + run: | + python -m pip install poetry + - name: Build + run: | + poetry build + - name: Publish + uses: pypa/gh-action-pypi-publish@release/v1 \ No newline at end of file