Skip to content

Commit f37adb6

Browse files
committed
ci(quality): add repo contract workflow
1 parent 1c848da commit f37adb6

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Repo Contract CI
2+
3+
on:
4+
push:
5+
branches: ["main"]
6+
pull_request:
7+
branches: ["main"]
8+
workflow_dispatch:
9+
10+
permissions:
11+
contents: read
12+
13+
jobs:
14+
contract:
15+
runs-on: ubuntu-latest
16+
steps:
17+
- uses: actions/checkout@v4
18+
- name: Run repository contract tests
19+
run: bash tests/repo_contract_test.sh

0 commit comments

Comments
 (0)