Skip to content

Commit

Permalink
First working draft of A0
Browse files Browse the repository at this point in the history
  • Loading branch information
NikosDelijohn committed Sep 13, 2024
1 parent 2b9bfad commit e3d5cb5
Show file tree
Hide file tree
Showing 2 changed files with 269 additions and 118 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/a0_lint_flake8.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Linting for a0.py

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

permissions:
contents: read

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: "3.10"

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8
- name: Lint with flake8
run: |
cd src
flake8 a0.py --max-line-length 120
Loading

0 comments on commit e3d5cb5

Please sign in to comment.