Skip to content

update files

update files #5

Workflow file for this run

name: 'Lint Notebook'
on:
push:
branches:
- dev/lint
permissions:
contents: write
id-token: write
jobs:
lint:
name: 'Linting'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
cache: 'pip'
working-directory: .github/workflows

Check failure on line 24 in .github/workflows/notebook-lint.yaml

View workflow run for this annotation

GitHub Actions / Lint Notebook

Invalid workflow file

The workflow is not valid. .github/workflows/notebook-lint.yaml (Line: 24, Col: 9): Unexpected value 'working-directory'
- name: Install requirements.txt
run: |
python3 -m pip install --upgrade pip
pip3 install nbformat
- name: Generate reports
working-directory: .github/workflows
run: |
python3 lint.py
- name: Commit changes
uses: EndBug/add-and-commit@v9
with:
author_name: github-action
author_email: [email protected]
message: 'Github Action: Refresh stats'