chore: mirror tmon GitHub protection setup

Add CODEOWNERS and a CI job named test so the Protect main ruleset
can require code-owner review and a green status check.
This commit is contained in:
guillaume
2026-08-11 10:18:46 -07:00
parent 244492d9ea
commit 5f0997de88
2 changed files with 25 additions and 0 deletions
+3
View File
@@ -0,0 +1,3 @@
# All changes need review from the maintainer before merge.
# Only code-owner approvals count toward the required review on main.
* @guillaumemeyer
+22
View File
@@ -0,0 +1,22 @@
name: CI
on:
push:
branches: [main]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install test deps
run: python3 -m pip install --upgrade pip pytest
- name: Test
run: python3 -m pytest -q