test(test_core): add tests for many* methods #52
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: Publish | |
on: | |
push: | |
branches: [master] | |
jobs: | |
publish: | |
if: contains(github.event.head_commit.message, 'Automatically generated by python-semantic-release') | |
concurrency: publish | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: | | |
pip install --upgrade pip | |
pip install flit | |
- name: Publish with flit | |
env: | |
FLIT_USERNAME: __token__ | |
FLIT_PASSWORD: ${{ secrets.FLIT_PASSWORD }} | |
run: |- | |
flit publish |