Skip to content

Commit a5e36ee

Browse files
committed
add dummy ci and clarify other workflows
1 parent 878f278 commit a5e36ee

File tree

3 files changed

+19
-0
lines changed

3 files changed

+19
-0
lines changed

.github/workflows/dummy-ci.yaml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# This job is used to satisfy PR checks for parts of the codebase
2+
# that are not tested during CI
3+
name: Dummy CI
4+
on:
5+
pull_request:
6+
paths:
7+
- '.gitignore'
8+
- 'LICENSE'
9+
- 'README.md'
10+
jobs:
11+
build_test:
12+
timeout-minutes: 5
13+
runs-on: ubuntu-latest
14+
steps:
15+
- run: echo Nothing to do

.github/workflows/execution.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,15 @@ on:
55
- 'v2/**'
66
- 'execution/**'
77
- '.github/workflows/execution.yml'
8+
- '.golangci.yml'
89
push:
910
branches:
1011
- master
1112
paths:
1213
- 'v2/**'
1314
- 'execution/**'
1415
- '.github/workflows/execution.yml'
16+
- '.golangci.yml'
1517
jobs:
1618
test:
1719
name: Build and test (go ${{ matrix.go }} / ${{ matrix.os }})

.github/workflows/v2.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ on:
77
- '.github/workflows/pr-title.yml'
88
- '.github/workflows/release.yml'
99
- 'commitlint.config.js'
10+
- '.golangci.yml'
1011
push:
1112
branches:
1213
- master
@@ -16,6 +17,7 @@ on:
1617
- '.github/workflows/pr-title.yml'
1718
- '.github/workflows/release.yml'
1819
- 'commitlint.config.js'
20+
- '.golangci.yml'
1921
jobs:
2022
test:
2123
name: Build and test (go ${{ matrix.go }} / ${{ matrix.os }})

0 commit comments

Comments
 (0)