-
Notifications
You must be signed in to change notification settings - Fork 0
90 lines (75 loc) · 1.83 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
name: CI
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
schedule:
# 08:00 UTC on Saturday.
- cron: "0 8 * * 6"
jobs:
go:
strategy:
matrix:
go: ["1.23"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: Test
run: go test -v ./...
- name: Format
run: |
gofmt -w -s .
git diff --exit-code
- name: Vet
run: go vet ./...
- name: Lint
uses: dominikh/staticcheck-action@v1
with:
version: "v0.5.1"
min-go-version: ${{ matrix.go }}
install-go: false
cache-key: ${{ matrix.go }}
python:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Format
uses: chartboost/ruff-action@v1
with:
args: "format --check"
- name: Lint
uses: chartboost/ruff-action@v1
other:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: "1.23"
- name: Run extra CI checks
run: python etc/ci-check.py
# Workaround for defining ruleset across matrix.
# See https://github.com/orgs/community/discussions/26822.
go-results:
needs: [go]
if: ${{ always() }}
runs-on: ubuntu-latest
steps:
- name: Check all job status
if: >-
${{
contains(needs.*.result, 'failure')
|| contains(needs.*.result, 'cancelled')
|| contains(needs.*.result, 'skipped')
}}
run: exit 1