python def add(a, b): return a + b def test_add(): assert add(1, 2) == 3 test_add() yaml build: - name: Install dependencies command: pip install -r requirements.txt - name: Run tests command: pytest tests/