Skip to content

2: install linter

2: install linter #4

Workflow file for this run

name: Count Python Files in Repository
on: [push]
jobs:
count-python-files:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Count files ending in .py
run: |
echo "The repository contains $(find . -name '*.py' | wc -l) Python files."