Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,14 @@ jobs:

- name: Dead code
run: pre-commit run --all-files --show-diff-on-failure

# This repo has no Python packaging, so the config-merger's dependencies
# are named here directly. They mirror config-merger/Dockerfile, which
# installs the same two unpinned — keep the two in step.
- run: pip install pyyaml mergedeep 'pytest>=8.0'

# Tests live under config-merger/test/, not tests/, so the path is
# explicit. This suite had never run in CI until 86cb4jfk7; the failure
# it now protects against had gone unnoticed for five months.
- name: Tests
run: pytest config-merger/test/
Loading