Bump version 2.2.0 -> 2.3.0 #55
Workflow file for this run
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: test | |
on: | |
push: | |
workflow_dispatch: | |
# Tests must always run! How can I reuse this? | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository. | |
uses: actions/checkout@v3 | |
- name: Setup Python. | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
# Eventually this step should be replaced with pip install .[test] instead. | |
# BUG: pip install .[test] does not install pytest. See pipeline number 3. | |
- name: Install Dependencies. | |
run: python3 -m pip install '.' pytest twine build docker | |
- name: Test | |
run: python3 -m pytest | |
- name: Verify Build. | |
run: |- | |
python3 -m build | |
python3 -m twine check dist/* |