Skip to content

Padovan sequence (#17) #22

Padovan sequence (#17)

Padovan sequence (#17) #22

Workflow file for this run

name: linting
on:
push:
branches:
- staging
pull_request:
branches:
- main
- staging
jobs:
linting-with-Ruff:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ruff
- name: Linting
run: |
ruff check . --preview