Skip to content

build(deps-dev): bump ruff from 0.6.1 to 0.6.2 #946

build(deps-dev): bump ruff from 0.6.1 to 0.6.2

build(deps-dev): bump ruff from 0.6.1 to 0.6.2 #946

Workflow file for this run

---
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Poetry
run: pipx install poetry
- name: Set up Python
uses: actions/setup-python@v4
with:
cache: poetry
python-version: '3.11'
- name: Install dependencies (Poetry)
run: poetry install --with=dev
- name: Install dependencies (Yarn)
run: yarn
- name: Install Shellcheck
run: sudo apt-get install -y shellcheck
- name: Lint with Shellcheck
run: yarn shellcheck
- name: Lint with mypy
run: yarn mypy
- name: Lint with ruff
run: yarn ruff
- name: Check spelling
run: yarn check-spelling
- name: Check formatting
run: yarn check-formatting
name: QA
'on':
pull_request:
branches:
- master
push:
branches:
- master