Skip to content

Merge pull request #1318 from medha-14/week-8 #1633

Merge pull request #1318 from medha-14/week-8

Merge pull request #1318 from medha-14/week-8 #1633

Workflow file for this run

name: code format
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
pre-commit:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: ['3.12']
requires: ['latest']
steps:
- name: Check out repository
uses: actions/checkout@v7
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v7
with:
python-version: ${{ matrix.python-version }}
- name: Install and run pre-commit hooks
uses: pre-commit/action@v3.0.1