Skip to content

Commit 3d52377

Browse files
committed
separate CI
1 parent bb362b0 commit 3d52377

File tree

2 files changed

+26
-2
lines changed

2 files changed

+26
-2
lines changed

.github/workflows/framework.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Framework Docker Component Tests
2+
on:
3+
push:
4+
concurrency:
5+
group: ${{ github.workflow }}-${{ github.ref }}-components
6+
cancel-in-progress: true
7+
jobs:
8+
test:
9+
defaults:
10+
run:
11+
working-directory: framework
12+
runs-on: ubuntu-latest
13+
steps:
14+
- name: Checkout repo
15+
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
16+
- name: Check for changes in Framework
17+
uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2
18+
id: changes
19+
with:
20+
filters: |
21+
src:
22+
- 'framework/**'
23+
- name: Run Docker Component Tests
24+
if: steps.changes.outputs.src == 'true'
25+
run: |
26+
go test -timeout 5m -v -count 1 -run TestDocker ./...

.github/workflows/test.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@ jobs:
1010
fail-fast: false
1111
matrix:
1212
project:
13-
- name: framework
14-
path: ./framework/
1513
- name: lib
1614
path: ./lib/
1715
- name: gotestloghelper

0 commit comments

Comments
 (0)