Bump certifi from 2023.5.7 to 2023.7.22 (#10) #66
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
name: build | |
on: push | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Build Tools | |
run: | | |
curl -sSL https://install.python-poetry.org | python | |
echo $HOME/.poetry/bin >> $GITHUB_PATH | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: "3.7" | |
- name: Install Python Requirements | |
run: | | |
poetry install | |
- name: Build Package | |
run: | | |
poetry run pytest --cov=recline --cov-report=xml tests | |
poetry build | |
- name: Publish Package | |
if: startsWith(github.event.ref, 'refs/tags') | |
uses: pypa/gh-action-pypi-publish@master | |
with: | |
user: __token__ | |
password: ${{ secrets.pypi_password }} |