try mimicking mapchete core package github CI #1
Workflow file for this run
This file contains hidden or 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, run tests and lint with a variety of Python versions | ||
|
Check failure on line 1 in .github/workflows/python-package.yml
|
||
| # For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | ||
| name: Python package test | ||
| on: | ||
| push: | ||
| branches: [main] | ||
| pull_request: | ||
| branches: [main] | ||
| schedule: | ||
| - cron: '0 8 * * 1,4' | ||
| jobs: | ||
| test: | ||
| runs-on: ${{ matrix.os }} | ||
| strategy: | ||
| fail-fast: false | ||
| matrix: | ||
| python-version: ["3.10", "3.11", "3.12"] | ||
| os: ["ubuntu-24.04", "ubuntu-latest"] | ||
| steps: | ||
| - uses: actions/checkout@v2 | ||
| - name: Set up Python ${{ matrix.python-version }} | ||
| uses: actions/setup-python@v2 | ||
| with: | ||
| python-version: ${{ matrix.python-version }} | ||
| - name: Lint | ||
| run: | | ||
| python -m pip install pre-commit | ||
| pre-commit run --show-diff-on-failure --all-files | ||
| - name: Install dependencies | ||
| env: | ||
| CURL_CA_BUNDLE: /etc/ssl/certs/ca-certificates.crt | ||
| run: | | ||
| sudo apt-add-repository -y ppa:ubuntugis/ubuntugis-unstable | ||
| sudo apt-get -y update | ||
| sudo apt-get install -y gdal-bin libgdal-dev libproj-dev libgeos-dev | ||
| python -m pip install --upgrade pip wheel | ||
| pip install -e .[complete] | ||
| pip freeze | ||
| # run tests | ||
| - name: run | ||
| env: | ||
| AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
| AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
| AWS_REQUEST_PAYER: ${{ variables.AWS_REQUEST_PAYER }} | ||
| AWS_DEFAULT_REGION: ${{ variables.AWS_DEFAULT_REGION }} | ||
| CDSE_S3_ACCESS_KEY: ${{ secrets.CDSE_S3_ACCESS_KEY }} | ||
| CDSE_S3_ACCESS_SECRET: ${{ secrets.CDSE_S3_ACCESS_SECRET }} | ||
| CURL_CA_BUNDLE: /etc/ssl/certs/ca-certificates.crt | ||
| run: pytest -v --cov mapchete_eo --cov-report xml:coverage.xml --cov-report=term-missing:skip-covered | ||
| # report detailed coverage in PR comment | ||
| - name: comment test coverage report on PR | ||
| uses: MishaKav/pytest-coverage-comment@main | ||
| with: | ||
| pytest-xml-coverage-path: coverage.xml | ||
| title: missing coverage | ||
| badge-title: Test Coverage | ||
| hide-badge: false | ||
| hide-report: false | ||
| create-new-comment: false | ||
| hide-comment: false | ||
| report-only-changed-files: false | ||
| remove-link-from-badge: true | ||
| # this will let the workflow fail if coverage is below 100% | ||
| # - name: Pytest coverage | ||
| # run: coverage report --skip-covered --show-missing --fail-under 100 | ||