--- #7
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: CI | |
on: push | |
jobs: | |
test: | |
name: Lint and Run | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v3 | |
with: | |
python-version: "3.10" | |
- name: Install Python dependencies | |
run: pip install -r requirements.txt -r requirements_dev.txt | |
env: | |
PIP_PROGRESS_BAR: off | |
- name: Lint | |
run: make lint | |
- name: Typecheck | |
run: make typecheck | |
publish: | |
name: Publish | |
needs: test | |
runs-on: ubuntu-latest | |
if: startsWith(github.ref, 'refs/tags') | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v3 | |
with: | |
python-version: "3.10" | |
- name: Install pypa/build | |
run: pip install build | |
env: | |
PIP_PROGRESS_BAR: off | |
- name: Build distribution | |
run: make build | |
- name: Upload artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: amti-islands | |
path: dist/ | |
- name: Publish to TestPyPI | |
uses: pypa/[email protected] | |
with: | |
repository_url: https://test.pypi.org/legacy/ | |
password: ${{ secrets.TEST_PYPI_API_TOKEN }} | |
print_hash: true | |
- name: Publish to PyPI | |
uses: pypa/[email protected] | |
with: | |
password: ${{ secrets.PYPI_API_TOKEN }} | |
print_hash: true |