Bump actions/cache from 4 to 5 #514
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 targets stable released dependencies from EDM. | |
| # Note that some packages may not actually be installed from EDM but from | |
| # PyPI, see etstool.py implementations. | |
| name: Test with EDM | |
| on: [pull_request, workflow_dispatch] | |
| env: | |
| INSTALL_EDM_VERSION: 4.1.1 | |
| QT_MAC_WANTS_LAYER: 1 | |
| jobs: | |
| # Test against EDM packages | |
| test-with-edm: | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, windows-latest] | |
| toolkit: ['pyside6'] | |
| runtime: ['3.8'] | |
| timeout-minutes: 20 # should be plenty, it's usually < 5 | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install Qt dependencies | |
| uses: ./.github/actions/install-qt-support | |
| if: matrix.toolkit != 'wx' | |
| - name: Cache EDM packages | |
| uses: actions/cache@v5 | |
| with: | |
| path: ~/.cache | |
| key: ${{ runner.os }}-${{ matrix.toolkit }}-${{ hashFiles('etstool.py') }} | |
| - name: Setup EDM | |
| uses: enthought/setup-edm-action@v4.1 | |
| with: | |
| edm-version: ${{ env.INSTALL_EDM_VERSION }} | |
| - name: Install click to the default EDM environment | |
| run: edm install -y wheel click coverage | |
| - name: Install test environment | |
| run: edm run -- python etstool.py install --toolkit=${{ matrix.toolkit }} --runtime=${{ matrix.runtime }} | |
| - name: Run tests (Linux) | |
| if: matrix.os == 'ubuntu-latest' | |
| run: xvfb-run -a edm run -- python etstool.py test --toolkit=${{ matrix.toolkit }} | |
| - name: Run tests (not Linux) | |
| if: matrix.os != 'ubuntu-latest' | |
| run: edm run -- python etstool.py test --toolkit=${{ matrix.toolkit }} |