Skip to content

Bump ruff from 0.0.290 to 0.1.11 #89

Bump ruff from 0.0.290 to 0.1.11

Bump ruff from 0.0.290 to 0.1.11 #89

Workflow file for this run

name: 'Run Pre-commit Hooks'
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
publish:
name: Run Pre-commit Hooks
runs-on: ubuntu-latest
steps:
- name: Checkout Source
uses: actions/checkout@v4
- name: Setup Dependencies
uses: './.github/actions/deps'
with:
python-version: '3.11'
- name: Install MDL
run: echo $'source \'https://rubygems.org\'\ngem \'mdl\', \'~> 0.12.0\'' > Gemfile
- uses: ruby/setup-ruby@v1
with:
ruby-version: '3.2' # Not needed with a .ruby-version file
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: Install Pre-commit dependencies
run: poetry run poe install
- uses: pre-commit/action@v3.0.0