Follow conjugation convention in tree_dot
(#105)
#56
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: Release | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Release | |
uses: patrick-kidger/action_update_python_project@v2 | |
with: | |
python-version: "3.11" | |
test-script: | | |
cp -r ${{ github.workspace }}/tests ./tests | |
cp ${{ github.workspace }}/pyproject.toml ./pyproject.toml | |
python -m pip install -r ./tests/requirements.txt | |
python -m tests | |
pypi-token: ${{ secrets.pypi_token }} | |
github-user: patrick-kidger | |
github-token: ${{ github.token }} | |
email-user: ${{ secrets.email_user }} | |
email-token: ${{ secrets.email_token }} | |
email-server: ${{ secrets.email_server }} | |
email-target: ${{ secrets.email_target }} |