Skip to content

chore: Add sample demo #79

chore: Add sample demo

chore: Add sample demo #79

Workflow file for this run

name: Execute Lint Formatting
on:
pull_request:
branches: [ "main" ]
jobs:
lintfmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install Python Dependencies
run: |
python -m pip install --upgrade pip
pip install black pylint
pip install -r requirements.txt
- name: Execute Lint Formatting
run: make lintfmt