test: add tests for github actions with coverage (#66) #24
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: ['main'] | |
name: release-please | |
jobs: | |
release-please: | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write # for PYPI release | |
contents: write | |
pull-requests: write | |
steps: | |
- name: Release | |
id: release | |
uses: googleapis/release-please-action@7987652d64b4581673a76e33ad5e98e3dd56832f # v4.1.3 | |
- uses: actions/checkout@v4 | |
if: ${{ steps.release.outputs.release_created }} | |
- name: tag major and minor versions | |
if: ${{ steps.release.outputs.release_created }} | |
run: | | |
# setup github actions bot as author | |
git config user.name github-actions[bot] | |
git config user.email 41898282+github-actions[bot]@users.noreply.github.com | |
# create and push major version tag | |
git tag v${{ steps.release.outputs.major }} | |
git push origin v${{ steps.release.outputs.major }} -f | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
if: ${{ steps.release.outputs.release_created }} | |
with: | |
python-version: '3.x' | |
- name: Install dependencies | |
if: ${{ steps.release.outputs.release_created }} | |
run: | | |
python -m pip install --upgrade pip | |
pip install build | |
- name: Build package | |
if: ${{ steps.release.outputs.release_created }} | |
run: python -m build | |
- name: Publish package | |
if: ${{ steps.release.outputs.release_created }} | |
uses: pypa/gh-action-pypi-publish@ec4db0b4ddc65acdf4bff5fa45ac92d78b56bdf0 # v1.9.0 |