Skip to content

Initial commit: AI Python Code Decoder #1

Initial commit: AI Python Code Decoder

Initial commit: AI Python Code Decoder #1

Workflow file for this run

name: Python CI

Check failure on line 2 in .github/workflows/python-ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/python-ci.yml

Invalid workflow file

You have an error in your yaml syntax on line 2
on: { push: {branches:[main]}, pull_request:{branches:[main]} }
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with: { python-version: '3.11' }
- name: Install deps
run: |
pip install -r requirements.txt
pip install flake8 pytest
- name: Lint
run: flake8 . --max-line-length=100
- name: Tests
run: pytest -q || true