Skip to content

Initial python linting #1

Initial python linting

Initial python linting #1

Workflow file for this run

name: Code Linting
on:
workflow_dispatch:
push:
paths:
- '**/*.py'
branches:
- main
- dev
pull_request:
paths:
- '**/*.py'
branches:
- main
- dev
jobs:
unit-tests:
runs-on: ubuntu-latest
container:
image: hopkinsidd/flepimop:latest-dev
options: --user root
steps:
- name: Checkout
uses: actions/checkout@v4
with:
lfs: true
- name: Black Formatter Check
uses: psf/black@stable
src: "."

Check failure on line 31 in .github/workflows/code-linting-ci.yml

View workflow run for this annotation

GitHub Actions / Code Linting

Invalid workflow file

The workflow is not valid. .github/workflows/code-linting-ci.yml (Line: 31, Col: 9): Unexpected value 'src' .github/workflows/code-linting-ci.yml (Line: 32, Col: 9): Unexpected value 'options'
options: "--check --quiet"