This repository was archived by the owner on Nov 18, 2025. It is now read-only.
[pre-commit.ci] pre-commit suggestions #208
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
| name: CI testing | |
| # see: https://help.github.com/en/actions/reference/events-that-trigger-workflows | |
| on: # Trigger the workflow on push or pull request, but only for the main branch | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| defaults: | |
| run: | |
| shell: bash | |
| jobs: | |
| pytester: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: ["ubuntu-latest"] | |
| python-version: ["3.10"] | |
| requires: ["oldest", "latest"] | |
| # Timeout: https://stackoverflow.com/a/59076067/4521646 | |
| timeout-minutes: 15 | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| cache: "pip" | |
| - name: Set min. dependencies | |
| if: matrix.requires == 'oldest' | |
| run: | | |
| pip install 'lightning-utilities[cli]' | |
| python -m lightning_utilities.cli requirements set-oldest --req_files='["requirements.txt"]' | |
| - name: Install package & dependencies | |
| run: | | |
| pip --version | |
| pip install -U -q -r requirements.txt pytest | |
| pip list | |
| - name: Tests | |
| run: | | |
| pytest . -v |