Skip to content

Find smallest number #11

Find smallest number

Find smallest number #11

Workflow file for this run

name: Lint with Ruff
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Debug Python Environment
run: |
python --version
pip --version
- name: Install Ruff
run: |
python -m pip install --upgrade pip
pip install ruff
- name: Run Ruff
run: ruff check solutions