Test CI Templates / test-python-code-quality (3.10) (push) Failing after 6s
Test CI Templates / test-python-code-quality (3.11) (push) Failing after 5s
Test CI Templates / test-python-code-quality (3.12) (push) Failing after 6s
Test CI Templates / validate-syntax (push) Successful in 50s
Test CI Templates / test-python-code-quality (false, false, basic) (push) Failing after 5s
Test CI Templates / test-python-code-quality (false, true, skip-pyupgrade) (push) Failing after 5s
Test CI Templates / test-python-code-quality (true, false, skip-mypy) (push) Failing after 5s
Test CI Templates / test-python-pytest (false, 3.11) (push) Failing after 5s
Test CI Templates / test-python-pytest (false, 3.12) (push) Failing after 5s
Test CI Templates / test-python-pytest (true, 3.11) (push) Failing after 5s
Test CI Templates / test-python-pytest (true, 3.12) (push) Failing after 5s
Test CI Templates / test-web-formatting (false, false, 18) (push) Failing after 5s
Test CI Templates / test-web-formatting (false, false, 20) (push) Failing after 5s
Test CI Templates / test-web-formatting (false, true, 18) (push) Failing after 5s
Test CI Templates / test-web-formatting (false, true, 20) (push) Failing after 5s
Test CI Templates / test-web-formatting (true, false, 18) (push) Failing after 5s
Test CI Templates / test-web-formatting (true, false, 20) (push) Failing after 5s
Test CI Templates / test-web-formatting (true, true, 18) (push) Failing after 6s
Test CI Templates / test-web-formatting (true, true, 20) (push) Failing after 7s
Test CI Templates / test-monorepo (push) Failing after 6s
Test CI Templates / test-edge-cases (push) Failing after 6s
Test CI Templates / test-results (push) Successful in 3s
23 lines
512 B
YAML
23 lines
512 B
YAML
name: Test CI Templates
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
|
|
jobs:
|
|
code-quality:
|
|
name: Code Quality
|
|
uses: gitea.gt-proj.com/brian/CI-templates/.gitea/workflows/python/code-quality.yml@main
|
|
with:
|
|
python-version: "3.11"
|
|
working-directory: "."
|
|
|
|
test:
|
|
name: Run Tests
|
|
uses: gitea.gt-proj.com/brian/CI-templates/.gitea/workflows/python/pytest.yml@main
|
|
with:
|
|
python-version: "3.11"
|
|
coverage-package: "test_package"
|
|
pytest-args: "--verbose"
|