Skip to content

Bump ruff from 0.6.7 to 0.6.8 in /requirements #9656

Bump ruff from 0.6.7 to 0.6.8 in /requirements

Bump ruff from 0.6.7 to 0.6.8 in /requirements #9656

Workflow file for this run

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