Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions .github/workflows/key4hep.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Key4hep build

on:
push:
branches:
- master
pull_request:
workflow_dispatch:
schedule:
- cron: 16 4 * * 1

jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
build_type: ["release", "nightly"]
image: ["alma9"]
include:
- build_type: "nightly"
image: ubuntu24
steps:
- uses: actions/checkout@v5
- uses: key4hep/key4hep-actions/key4hep-build@main
with:
build_type: ${{ matrix.build_type }}
image: ${{ matrix.image }}