Skip to content

Commit 506cf68

Browse files
committed
Run project checks in CI
Signed-off-by: Austin Vazquez <[email protected]>
1 parent d7751f3 commit 506cf68

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

.github/workflows/ci.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: CI
2+
on:
3+
push:
4+
branches: [ main ]
5+
pull_request:
6+
branches: [ main ]
7+
8+
permissions:
9+
contents: read
10+
pull-requests: read
11+
12+
jobs:
13+
project:
14+
name: Project Checks
15+
runs-on: ubuntu-latest
16+
timeout-minutes: 5
17+
18+
steps:
19+
- uses: actions/checkout@v4
20+
with:
21+
path: src/github.com/containerd/project-checks
22+
23+
- uses: actions/setup-go@v5
24+
with:
25+
go-version: "1.24"
26+
27+
- uses: ./
28+
with:
29+
working-directory: src/github.com/containerd/project-checks

0 commit comments

Comments
 (0)