Skip to content

docs: grpo-chtc-debugging-log — 11 issues hit during week 4 task 5, i… #67

docs: grpo-chtc-debugging-log — 11 issues hit during week 4 task 5, i…

docs: grpo-chtc-debugging-log — 11 issues hit during week 4 task 5, i… #67

Workflow file for this run

name: ci
on:
push:
branches: [main]
pull_request:
jobs:
check:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: pip
- name: install
run: |
python -m pip install --upgrade pip
pip install -e ".[dev]"
- name: ruff
run: ruff check src tests scripts
- name: pyright
run: pyright
- name: pytest
run: pytest