-
Notifications
You must be signed in to change notification settings - Fork 10
49 lines (40 loc) · 1.21 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
permissions:
contents: read
pull-requests: read
jobs:
project:
name: Project Checks
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
with:
path: src/github.com/containerd/project-checks
- uses: actions/setup-go@v5
with:
go-version: "1.22"
cache: false
- uses: containerd/[email protected]
if: github.repository == 'containerd/project-checks'
with:
working-directory: src/github.com/containerd/project-checks
repo-access-token: ${{ secrets.GITHUB_TOKEN }}
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install shellcheck
run: |
scversion="v0.10.0"
wget -qO- "https://github.com/koalaman/shellcheck/releases/download/${scversion?}/shellcheck-${scversion?}.linux.x86_64.tar.xz" | tar -xJv
echo "${PWD}/shellcheck-${scversion}/shellcheck" >> ${GITHUB_PATH}
- name: Shellcheck
run: |
shellcheck ./script/validate/dco ./script/validate/fileheader ./script/validate/vendor