Fix GitHub actions and docs generation (#10) #18
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
# This workflow will install Python dependencies and run tests on | |
# windows and linux systems with a variety of Python versions | |
# For more information see: | |
# https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | |
name: Automated Tests | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
schedule: | |
- cron: "0 9 * * 1" # Every Monday at 9 UTC | |
jobs: | |
build: | |
name: Build py${{ matrix.python-version }} @ ${{ matrix.os }} π | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
python-version: ['3.9', '3.13'] | |
os: ["ubuntu-latest"] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
fetch-depth: 0 | |
- uses: conda-incubator/setup-miniconda@v3 | |
with: | |
miniconda-version: "latest" | |
auto-update-conda: true | |
python-version: ${{ matrix.python-version }} | |
channel-priority: flexible | |
environment-file: environment.yml | |
activate-environment: flagit | |
auto-activate-base: false | |
- name: Print environment infos | |
shell: bash -l {0} | |
run: | | |
conda info -a | |
which pip | |
which python | |
- name: Install base package and run tests | |
shell: bash -l {0} | |
run: | | |
pip install -e .[testing] | |
pytest # run only basic tests, see setup.cfg | |
- name: Export Environment | |
shell: bash -l {0} | |
run: | | |
mkdir -p artifacts | |
filename=env_py${{ matrix.python-version }}_${{ matrix.os }}.yml | |
conda env export --no-builds | grep -v "prefix" > artifacts/$filename | |
- name: Upload Coverage | |
shell: bash -l {0} | |
run: | | |
pip install coveralls && coveralls --service=github | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
COVERALLS_FLAG_NAME: ${{ matrix.python-version }} | |
COVERALLS_PARALLEL: true | |
- name: Create wheel and dist package | |
shell: bash -l {0} | |
run: | | |
pip install setuptools setuptools_scm wheel | |
# Create source distribution (sdist) and wheel distribution | |
python setup.py sdist --dist-dir artifacts/dist | |
python setup.py bdist_wheel --dist-dir artifacts/dist | |
# Verify the contents of the artifacts directory | |
ls artifacts/dist | |
# Validate the built distribution files | |
pip install twine | |
twine check artifacts/dist/* | |
- name: Upload Artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Artifacts-py${{ matrix.python-version }}-${{ matrix.os }} | |
path: artifacts/* | |
coveralls: | |
name: Submit Coveralls π | |
needs: build | |
runs-on: ubuntu-latest | |
container: python:3-slim | |
steps: | |
- name: Finished | |
run: | | |
pip3 install --upgrade coveralls && coveralls --service=github --finish | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
publish: | |
name: Upload to PyPI π | |
if: startsWith(github.ref, 'refs/tags/v') && startsWith(github.repository, 'TUW-GEO') | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Print environment variables | |
run: | | |
echo "GITHUB_REF = $GITHUB_REF" | |
echo "GITHUB_REPOSITORY = $GITHUB_REPOSITORY" | |
- name: Download Artifacts | |
uses: actions/download-artifact@v4 | |
with: | |
path: Artifacts | |
pattern: Artifacts-* | |
merge-multiple: true | |
- name: Display downloaded files | |
run: ls -aR | |
- name: Upload to PyPI | |
uses: pypa/[email protected] | |
with: | |
skip_existing: true | |
verbose: true | |
verify_metadata: true | |
packages_dir: Artifacts/dist/ | |
user: __token__ | |
password: ${{ secrets.PYPI_API_TOKEN }} # this needs to be uploaded to github actions secrets |