Skip to content

Workflow file for this run

name: Count python lines
on: [push]
jobs:
run_python_counter:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Count python lines
run: |
echo "Counting lines of python code"
find . -name '*.py' | xargs wc -l