Skip to content

Initial commit

Initial commit #3

name: PR build and merge
on:
pull_request:
types: [opened, synchronize, reopened]
push:
branches:
- main
- "release/**"
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: "Checkout"
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: "Build test containers"
run: make build
- name: "Run validation & test"
run: make check-all
- name: "Stop containers"
if: always()
run: make down