Skip to content

Initial commit

Initial commit #2

Workflow file for this run

name: ci
on:
push:
branches: ['main']
pull_request:
branches: ['main']
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install dependencies
run: pip install -r requirements.txt
- name: Check Lint
run: python -m pylint cook.py