Bump test from 1.29.0 to 1.31.1 in /minifier in the dart-dependencies group across 1 directory #162
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: Python/Parser - CI | |
| on: [pull_request] | |
| defaults: | |
| run: | |
| working-directory: parser | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: [3.11.x] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pipenv wheel | |
| pipenv install --deploy --dev | |
| - name: Test with Python ${{ matrix.python-version }} | |
| run: | | |
| pipenv run unit-test | |
| - name: Lint with Python ${{ matrix.python-version }} | |
| run: | | |
| pipenv run lint | |
| pipenv run black-check | |
| pipenv run isort-check | |
| - name: Check type hints with ${{ matrix.python-version }} | |
| run: | | |
| pipenv run type-hints |