Bump pygments from 2.15.0 to 2.20.0 #74
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: ⏳ Tests | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: [3.12] | |
| hdt-version: ['v1.3.3'] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python ${{ matrix.python-version }} 🐍 | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Setup pipenv | |
| uses: dschep/install-pipenv-action@v1 | |
| - name: Cache pipenv dependencies | |
| uses: actions/cache@v4 | |
| id: cache-pipenv | |
| with: | |
| path: ~/.local/share/virtualenvs | |
| key: ${{ runner.os }}-${{ matrix.python-version }}-pipenv-${{ hashFiles('**/Pipfile.lock') }} | |
| - name: Setup HDT ${{ matrix.hdt-version }} | |
| uses: Callidon/setup-hdt-action@v1.2 | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| hdt-tag: ${{ matrix.hdt-version }} | |
| source-path: ./ | |
| - name: Install dependencies | |
| if: steps.cache-pipenv.outputs.cache-hit != 'true' | |
| run: pipenv install --dev | |
| - name: Compile & install package | |
| run: pipenv run python -m pip install build --user | |
| - name: Test with pytest | |
| run: pipenv run pytest |