From 342a9145bd799615d2acffd7f1eb831cc1893a0e Mon Sep 17 00:00:00 2001 From: Thomas Madlener Date: Thu, 15 Sep 2022 17:54:52 +0200 Subject: [PATCH] Update status badge in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 67fdc175..1b13005c 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # Marlin (Modular Analysis and Reconstruction for the LINear Collider ) -[![Build Status](https://travis-ci.org/iLCSoft/Marlin.svg?branch=master)](https://travis-ci.org/iLCSoft/Marlin) +[![linux](https://github.com/iLCSoft/Marlin/actions/workflows/linux.yml/badge.svg)](https://github.com/iLCSoft/Marlin/actions/workflows/linux.yml) [![Coverity Scan Build Status](https://scan.coverity.com/projects/11089/badge.svg)](https://scan.coverity.com/projects/ilcsoft-marlin) The idea is that every computing task is implemented as a processor (module) that analyzes data in an LCEvent and creates additional output collections that are added to the event. The framework allows to define the processors (and their order) that are executed at runtime in a simple steering file. Via the steering file you can also define named parameters (string, float, int - single and arrays) for every processor as well as for the global scope. By using the framework users don't have to write any code that deals with the IO they simply write processors with defined callbacks, i.e. init(), processRunHeader(), processEvent(), end().