Skip to content

Commit

Permalink
PB-37351: Added github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Tecnobutrul committed Dec 30, 2024
1 parent 3d657dc commit 23f0fa5
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/push_pr_main.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Push & PR to the main branch

on: push

jobs:
lint:
name: Test ce images
runs-on: ruby:slim-bookworm
strategy:
matrix:
test_name:
[
"docker_image",
"docker_runtime",
"docker_runtime_no_envs",
"docker_runtime_with_passbolt_php",
]
rootless: [true, false]
steps:
- name: Checkout
uses: actions/checkout@v4
- env:
PASSBOLT_FLAVOUR: "ce"
ROOTLESS: ${{ matrix.rootless }}
TEST_NAME: ${{ matrix.test_name }}
run: |
bundle install
rake spec:$TEST_NAME

0 comments on commit 23f0fa5

Please sign in to comment.