CI/CD #166
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/CD | |
on: | |
push: | |
pull_request: | |
schedule: | |
- cron: "0 0 * * *" # daily | |
jobs: | |
build: | |
strategy: | |
matrix: | |
python-version: ['3.8', '3.12'] | |
os: ["ubuntu-latest", "windows-latest", "macos-latest"] | |
name: py${{ matrix.python-version }}@${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: false # does not work with self-hosted testdata | |
- name: Checkout test data | |
shell: bash -l {0} | |
run : | | |
git submodule init | |
git submodule sync | |
git submodule update | |
- uses: conda-incubator/setup-miniconda@v3 | |
with: | |
miniconda-version: "latest" | |
auto-update-conda: true | |
python-version: ${{ matrix.python-version }} | |
environment-file: environment.yml | |
activate-environment: pytesmo | |
channel-priority: flexible | |
auto-activate-base: false | |
- name: Print infos | |
shell: bash -l {0} | |
run: | | |
git status | |
conda info -a | |
conda list | |
pip list | |
which pip | |
which python | |
- 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: Install package and test | |
shell: bash -l {0} | |
run: | | |
pip install -e .[testing] | |
pytest --cache-clear | |
- 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: | | |
git status | |
pip install setuptools_scm | |
python setup.py sdist --dist-dir .artifacts/dist | |
ls .artifacts/dist | |
- name: Upload Artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Artifacts | |
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 }} |