update readme #21
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
# .github/workflows/main.yml | |
--- | |
on: | |
- push | |
env: | |
PYTHONUNBUFFERED: 1 | |
jobs: | |
test: | |
strategy: | |
matrix: | |
include: | |
- python: 3.12 | |
- python: 3.7 | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: setup python ${{ matrix.python }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python }} | |
- name: upgrade pip | |
run: pip install --upgrade pip | |
- name: checkout | |
uses: actions/checkout@v3 | |
- name: install editable package | |
run: pip install -e . | |
- name: Install test dependencies | |
run: pip install -r ./requirements-test.txt | |
- name: run unit tests | |
run: ./unit_tests.sh | |
pypi-publish: | |
name: Upload release to PyPI | |
needs: | |
- test | |
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/') | |
#if: github.ref == 'refs/heads/main' | |
runs-on: ubuntu-latest | |
environment: | |
name: pypi | |
url: https://pypi.org/p/clickdc | |
permissions: | |
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3 | |
- name: install build python package | |
run: pip install --upgrade build | |
- name: build the package | |
run: python -m build | |
- name: Publish package distributions to PyPI | |
uses: pypa/gh-action-pypi-publish@release/v1 |