зеркало из https://github.com/microsoft/torchgeo.git
120 строки
3.8 KiB
YAML
120 строки
3.8 KiB
YAML
name: tests
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- release**
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
- release**
|
|
defaults:
|
|
run:
|
|
shell: bash
|
|
jobs:
|
|
latest:
|
|
name: latest
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
|
python-version: ['3.10', '3.11', '3.12']
|
|
steps:
|
|
- name: Clone repo
|
|
uses: actions/checkout@v4.2.2
|
|
- name: Set up python
|
|
uses: actions/setup-python@v5.3.0
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
- name: Cache dependencies
|
|
uses: actions/cache@v4.1.2
|
|
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' }}
|
|
- name: Setup headless display for pyvista
|
|
uses: pyvista/setup-headless-display-action@v2
|
|
- 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 --cov-report=xml
|
|
python3 -m torchgeo --help
|
|
- name: Report coverage
|
|
uses: codecov/codecov-action@v4.6.0
|
|
with:
|
|
token: ${{ secrets.CODECOV_TOKEN }}
|
|
minimum:
|
|
name: minimum
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Clone repo
|
|
uses: actions/checkout@v4.2.2
|
|
- name: Set up python
|
|
uses: actions/setup-python@v5.3.0
|
|
with:
|
|
python-version: '3.10'
|
|
- name: Cache dependencies
|
|
uses: actions/cache@v4.1.2
|
|
id: cache
|
|
with:
|
|
path: ${{ env.pythonLocation }}
|
|
key: ${{ env.pythonLocation }}-${{ hashFiles('requirements/min-reqs.old') }}
|
|
- name: Setup headless display for pyvista
|
|
uses: pyvista/setup-headless-display-action@v2
|
|
- name: Install pip dependencies
|
|
if: steps.cache.outputs.cache-hit != 'true'
|
|
run: |
|
|
pip install -r requirements/min-reqs.old
|
|
pip cache purge
|
|
- name: List pip dependencies
|
|
run: pip list
|
|
- name: Run pytest checks
|
|
run: |
|
|
pytest --cov --cov-report=xml
|
|
python3 -m torchgeo --help
|
|
- name: Report coverage
|
|
uses: codecov/codecov-action@v4.6.0
|
|
with:
|
|
token: ${{ secrets.CODECOV_TOKEN }}
|
|
datasets:
|
|
name: datasets
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Clone repo
|
|
uses: actions/checkout@v4.2.2
|
|
- name: Set up python
|
|
uses: actions/setup-python@v5.3.0
|
|
with:
|
|
python-version: '3.12'
|
|
- name: Cache dependencies
|
|
uses: actions/cache@v4.1.2
|
|
id: cache
|
|
with:
|
|
path: ${{ env.pythonLocation }}
|
|
key: ${{ env.pythonLocation }}-${{ hashFiles('requirements/required.txt') }}-${{ hashFiles('requirements/tests.txt') }}
|
|
- name: Install pip dependencies
|
|
if: steps.cache.outputs.cache-hit != 'true'
|
|
run: |
|
|
pip install -r requirements/required.txt -r requirements/tests.txt
|
|
pip cache purge
|
|
- name: List pip dependencies
|
|
run: pip list
|
|
- name: Run pytest checks
|
|
run: |
|
|
pytest --cov --cov-report=xml
|
|
python3 -m torchgeo --help
|
|
- name: Report coverage
|
|
uses: codecov/codecov-action@v4.6.0
|
|
with:
|
|
token: ${{ secrets.CODECOV_TOKEN }}
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.event.pull_request.head.label || github.head_ref || github.ref }}
|
|
cancel-in-progress: true
|