Skip to content

Commit aeedbf3

Browse files
ci: add repository health check
1 parent 5f40402 commit aeedbf3

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: CI
2+
3+
on:
4+
pull_request:
5+
push:
6+
branches: [main]
7+
8+
jobs:
9+
repository-health:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v4
13+
- name: Check repository has public surface
14+
run: test -f README.md || test -f index.html

0 commit comments

Comments
 (0)