-
Notifications
You must be signed in to change notification settings - Fork 1
83 lines (71 loc) · 1.69 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
name: CI
on:
pull_request:
branches: [main]
push:
branches: [main]
workflow_call:
workflow_dispatch:
env:
TASK_X_REMOTE_TASKFILES: 1
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout
uses: actions/checkout@main
- name: Install tools
run: |
echo "/home/linuxbrew/.linuxbrew/bin" >> "$GITHUB_PATH"
/home/linuxbrew/.linuxbrew/bin/brew install \
actionlint \
check-jsonschema \
fd \
go-task \
jq \
prettier \
shellcheck \
shfmt \
uv \
yamlfmt \
yamllint \
- name: Lint
run: task lint --yes
test:
name: Test
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout
uses: actions/checkout@main
- name: Install tools
run: |
echo "$(pwd)/.venv/bin" >> "$GITHUB_PATH"
echo "/home/linuxbrew/.linuxbrew/bin" >> "$GITHUB_PATH"
/home/linuxbrew/.linuxbrew/bin/brew install \
go-task \
uv \
- name: Install dependencies
run: task sync --yes
- name: Test
run: task test --yes
- name: Report Coveralls
uses: coverallsapp/github-action@main
with:
format: python
- name: Build
run: task build --yes
check:
name: Check
permissions: {}
runs-on: ubuntu-latest
needs: [lint, test]
if: always()
steps:
- name: Ensure no jobs failed
run: |-
[ "${{ !contains(needs.*.result, 'failure') }}" = "true" ] || exit 1