Skip to content

modify sum function

modify sum function #4

Workflow file for this run

name: Pre-commit Hooks
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.11.9
uses: actions/setup-python@v3
with:
python-version: 3.11.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pre-commit
- name: Analysing the code with pre-commit
run: |
SKIP=no-commit-to-branch pre-commit run --all-files