Skip to content

added py-pkg files and updated age_split to have innit #4

added py-pkg files and updated age_split to have innit

added py-pkg files and updated age_split to have innit #4

Workflow file for this run

name: Lint
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install Ruff
run: pip install ruff
- name: Lint with Ruff
run: |
ruff check .
ruff fix .
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: 'Automatically fix Ruff issues'
branch: ${{ github.head_ref }}