-
Notifications
You must be signed in to change notification settings - Fork 0
44 lines (37 loc) · 937 Bytes
/
ci.yaml
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
name: CI
run-name: >
CI (${{ github.event_name }})
${{ github.event_name == 'pull_request' && format('PR#{0}', github.event.number) || '' }}
on:
workflow_dispatch:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions: {}
jobs:
pre-commit:
permissions:
# for check-dist
contents: write
actions: write
uses: ./.github/workflows/step_pre-commit.yaml
setup-tmt:
needs: [pre-commit]
uses: ./.github/workflows/step_test-setup-tmt.yaml
run-tmt:
needs: [setup-tmt]
uses: ./.github/workflows/step_test-run-tmt.yaml
pass:
name: ✅ Pass
needs: [pre-commit, setup-tmt, run-tmt]
runs-on: ubuntu-latest
steps:
- name: Check all CI jobs
uses: re-actors/alls-green@release/v1
with:
jobs: ${{ toJSON(needs) }}
if: always()