Python Schoolby trefilov
Шаг 1 из 4+110 XP

CI/CD (концепт)

GitHub Actions: тесты на каждый push.

CI

on: [push]
jobs:
  test:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - run: pip install -e .
      - run: pytest