Skip to content

Commit

Permalink
new path-based CI workflows for securememory & appencryption
Browse files Browse the repository at this point in the history
  • Loading branch information
aka-bo committed Jun 13, 2024
1 parent e2b6e94 commit 3571634
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/go-appencryption-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: '[Go] AppEncryption Continuous Integration'

on:
workflow_dispatch:

push:
# branches:
# - ci-refresh # TODO: remove/fix prior to PR
paths:
- 'go/appencryption/**'
- '.github/workflows/go-appencryption-*'

jobs:
build:
uses: ./.github/workflows/go-appencryption-build.yml

test:
needs: build
uses: ./.github/workflows/go-appencryption-test.yml
20 changes: 20 additions & 0 deletions .github/workflows/go-securememory-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: '[Go] SecureMemory Continuous Integration'

on:
workflow_dispatch:

push:
# branches:
# - ci-refresh # TODO: remove/fix prior to PR
paths:
- 'go/securememory/**'
- '.github/workflows/go-securememory-*'

jobs:
build:
uses: ./.github/workflows/go-securememory-build.yml

test:
needs: build
uses: ./.github/workflows/go-securememory-test.yml

0 comments on commit 3571634

Please sign in to comment.