Skip to content

Commit 23f0fa5

Browse files
committed
PB-37351: Added github workflow
1 parent 3d657dc commit 23f0fa5

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Push & PR to the main branch
2+
3+
on: push
4+
5+
jobs:
6+
lint:
7+
name: Test ce images
8+
runs-on: ruby:slim-bookworm
9+
strategy:
10+
matrix:
11+
test_name:
12+
[
13+
"docker_image",
14+
"docker_runtime",
15+
"docker_runtime_no_envs",
16+
"docker_runtime_with_passbolt_php",
17+
]
18+
rootless: [true, false]
19+
steps:
20+
- name: Checkout
21+
uses: actions/checkout@v4
22+
- env:
23+
PASSBOLT_FLAVOUR: "ce"
24+
ROOTLESS: ${{ matrix.rootless }}
25+
TEST_NAME: ${{ matrix.test_name }}
26+
run: |
27+
bundle install
28+
rake spec:$TEST_NAME

0 commit comments

Comments
 (0)