CI: stable notebook dependency versions #7867
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: tests | |
on: | |
push: | |
branches: | |
- main | |
- release** | |
pull_request: | |
branches: | |
- main | |
- release** | |
jobs: | |
latest: | |
name: latest | |
runs-on: ${{ matrix.os }} | |
env: | |
MPLBACKEND: Agg | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
python-version: ['3.9', '3.10', '3.11'] | |
steps: | |
- name: Clone repo | |
uses: actions/checkout@v4.1.1 | |
- name: Set up python | |
uses: actions/setup-python@v5.0.0 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Cache dependencies | |
uses: actions/cache@v4.0.0 | |
id: cache | |
with: | |
path: ${{ env.pythonLocation }} | |
key: ${{ env.pythonLocation }}-${{ hashFiles('requirements/required.txt') }}-${{ hashFiles('requirements/datasets.txt') }}-${{ hashFiles('requirements/tests.txt') }} | |
if: ${{ ! (runner.os == 'macOS' && matrix.python-version == '3.11') }} | |
- name: Setup headless display for pyvista | |
uses: pyvista/setup-headless-display-action@v2 | |
- name: Install apt dependencies (Linux) | |
run: | | |
sudo apt-get update | |
sudo apt-get install unrar | |
if: ${{ runner.os == 'Linux' }} | |
- name: Install brew dependencies (macOS) | |
run: brew install rar | |
if: ${{ runner.os == 'macOS' }} | |
- name: Install choco dependencies (Windows) | |
run: choco install 7zip | |
if: ${{ runner.os == 'Windows' }} | |
- name: Install pip dependencies | |
if: steps.cache.outputs.cache-hit != 'true' | |
run: | | |
pip install -r requirements/required.txt -r requirements/datasets.txt -r requirements/tests.txt | |
pip cache purge | |
- name: List pip dependencies | |
run: pip list | |
- name: Run pytest checks | |
run: | | |
pytest --cov=torchgeo --cov-report=xml --durations=10 | |
python3 -m torchgeo --help | |
- name: Upload coverage artifact | |
uses: actions/upload-artifact@v4.3.0 | |
with: | |
name: coverage_${{ matrix.os }}_py-${{ matrix.python-version }} | |
path: coverage.xml | |
minimum: | |
name: minimum | |
runs-on: ubuntu-latest | |
env: | |
MPLBACKEND: Agg | |
steps: | |
- name: Clone repo | |
uses: actions/checkout@v4.1.1 | |
- name: Set up python | |
uses: actions/setup-python@v5.0.0 | |
with: | |
python-version: '3.9' | |
- name: Cache dependencies | |
uses: actions/cache@v4.0.0 | |
id: cache | |
with: | |
path: ${{ env.pythonLocation }} | |
key: ${{ env.pythonLocation }}-${{ hashFiles('requirements/min-reqs.old') }}-${{ hashFiles('requirements/mins-cons.old') }} | |
- name: Setup headless display for pyvista | |
uses: pyvista/setup-headless-display-action@v2 | |
- name: Install apt dependencies (Linux) | |
run: | | |
sudo apt-get update | |
sudo apt-get install unrar | |
- name: Install pip dependencies | |
if: steps.cache.outputs.cache-hit != 'true' | |
run: | | |
pip install -r requirements/min-reqs.old -c requirements/min-cons.old | |
pip cache purge | |
- name: List pip dependencies | |
run: pip list | |
- name: Run pytest checks | |
run: | | |
pytest --cov=torchgeo --cov-report=xml --durations=10 | |
python3 -m torchgeo --help | |
- name: Upload coverage artifact | |
uses: actions/upload-artifact@v4.3.0 | |
with: | |
name: coverage_minimum | |
path: coverage.xml | |
codecov: | |
name: codecov | |
runs-on: ubuntu-latest | |
needs: [latest, minimum] | |
steps: | |
- name: Clone repo | |
uses: actions/checkout@v4.1.1 | |
- name: Download coverage artifacts | |
uses: actions/download-artifact@v4.1.1 | |
- name: Report coverage | |
uses: codecov/codecov-action@v3.1.6 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
fail_ci_if_error: true | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.head.label || github.head_ref || github.ref }} | |
cancel-in-progress: true |