Bump setuptools from 75.3.0 to 75.4.0 in /requirements (#2404) #9962
This file contains 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: style | |
on: | |
push: | |
branches: | |
- main | |
- release** | |
pull_request: | |
branches: | |
- main | |
- release** | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
mypy: | |
name: mypy | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone repo | |
uses: actions/[email protected] | |
- name: Set up python | |
uses: actions/[email protected] | |
with: | |
python-version: '3.12' | |
- name: Cache dependencies | |
uses: actions/[email protected] | |
id: cache | |
with: | |
path: ${{ env.pythonLocation }} | |
key: ${{ env.pythonLocation }}-${{ hashFiles('requirements/required.txt') }}-${{ hashFiles('requirements/datasets.txt') }}-${{ hashFiles('requirements/style.txt') }}-${{ hashFiles('requirements/tests.txt') }} | |
- name: Install pip dependencies | |
if: steps.cache.outputs.cache-hit != 'true' | |
run: | | |
pip install -r requirements/required.txt -r requirements/datasets.txt -r requirements/style.txt -r requirements/tests.txt | |
pip cache purge | |
- name: List pip dependencies | |
run: pip list | |
- name: Run mypy checks | |
run: mypy . | |
ruff: | |
name: ruff | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone repo | |
uses: actions/[email protected] | |
- name: Set up python | |
uses: actions/[email protected] | |
with: | |
python-version: '3.12' | |
- name: Cache dependencies | |
uses: actions/[email protected] | |
id: cache | |
with: | |
path: ${{ env.pythonLocation }} | |
key: ${{ env.pythonLocation }}-${{ hashFiles('requirements/style.txt') }} | |
- name: Install pip dependencies | |
if: steps.cache.outputs.cache-hit != 'true' | |
run: | | |
pip install -r requirements/style.txt | |
pip cache purge | |
- name: List pip dependencies | |
run: pip list | |
- name: Run ruff checks | |
run: | | |
ruff check --output-format=github --no-fix . | |
ruff format --diff | |
prettier: | |
name: prettier | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone repo | |
uses: actions/[email protected] | |
- name: Set up nodejs | |
uses: actions/[email protected] | |
with: | |
node-version: '20' | |
cache: 'npm' | |
cache-dependency-path: 'package-lock.json' | |
- name: Installing prettier | |
run: | | |
npm install | |
npm cache clean --force | |
- name: List npm dependencies | |
run: npm ls --all | |
- name: Run prettier formatting | |
run: npx prettier --check . | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.head.label || github.head_ref || github.ref }} | |
cancel-in-progress: true |