chore: bump conda lock files #71
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
# Reference: | |
# - https://github.com/actions/checkout | |
# - https://github.com/actions/setup-python | |
# - https://github.com/awalsh128/cache-apt-pkgs-action | |
name: ci-tests-pypi | |
on: | |
pull_request: | |
schedule: | |
# every day @ 00h03 | |
- cron: "3 0 * * *" | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
defaults: | |
run: | |
shell: bash -l {0} | |
env: | |
ALLOW_PLOTTING: "true" | |
CARTOPY_SHARE_DIR: ~/.local/share/cartopy | |
GEOVISTA_POOCH_MUTE: true | |
PY_COLORS: "1" | |
SHELLOPTS: "errexit:pipefail" | |
jobs: | |
test-pypi: | |
name: "test pypi (py${{ matrix.version }})" | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
version: ["3.12"] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.version }} | |
- name: "apt cache" | |
uses: awalsh128/cache-apt-pkgs-action@a6c3917cc929dd0345bfb2d3feaf9101823370ad | |
with: | |
packages: libgl1-mesa-glx xvfb | |
version: 1.0 | |
- name: "pip install" | |
run: | | |
pip install --no-cache-dir -e .[test,exam,cmap] | |
- name: "pip freeze" | |
run: | | |
pip freeze | |
- name: "download cartopy assets" | |
run: | | |
mkdir -p ${CARTOPY_SHARE_DIR} | |
python -m cartopy.feature.download physical --output ${CARTOPY_SHARE_DIR} --no-warn | |
- name: "test pypi (py${{ matrix.version }})" | |
run: | | |
pytest --xvfb-backend xvfb --fail_extra_image_cache --generated_image_dir test_images | |
- name: "report failure" | |
if: failure() && github.event_name == 'schedule' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
TITLE="chore: pypi test failure" | |
BODY=$(cat <<EOL | |
The \`py${{ matrix.version }}\` tests for the latest resolved \`pip\` environment have failed. | |
Please investigate GHA run-id [${{ github.run_id }}](https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}) | |
EOL | |
) | |
gh issue create --title "${TITLE}" --body "${BODY}" --label "bot" --label "new: issue" --repo "${{ github.repository }}" |