Skip to content

Commit 0ad8180

Browse files
#10 - Github Workflows - some more experiments
1 parent ce6cddd commit 0ad8180

File tree

6 files changed

+26
-46
lines changed

6 files changed

+26
-46
lines changed

.github/workflows/cmake-multi-platform.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,13 @@ name: Build
22

33
on:
44
push:
5-
branches: [ "main" ]
5+
branches:
6+
- '*'
7+
tags:
8+
- 'v[0-9]+.[0-9]+.[0-9]+'
69
pull_request:
7-
branches: [ "main" ]
10+
branches:
11+
- '*'
812

913
jobs:
1014
build:

.github/workflows/cmake-single-platform.yml

Lines changed: 0 additions & 37 deletions
This file was deleted.

.github/workflows/cppcheck.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
11
name: cppcheck
2+
23
on:
34
push:
4-
branches: [ "main" ]
5+
branches:
6+
- '*'
7+
tags:
8+
- 'v[0-9]+.[0-9]+.[0-9]+'
59
pull_request:
6-
branches: [ "main" ]
10+
branches:
11+
- '*'
712

813
jobs:
914
build:

.github/workflows/gtest.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,13 @@ name: Google Test
22

33
on:
44
push:
5-
branches: [ "main" ]
5+
branches:
6+
- '*'
7+
tags:
8+
- 'v[0-9]+.[0-9]+.[0-9]+'
69
pull_request:
7-
branches: [ "main" ]
10+
branches:
11+
- '*'
812

913
env:
1014
BUILD_TYPE: Release

.github/workflows/valgrind.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,13 @@ name: valgrind
22

33
on:
44
push:
5-
branches: [ "main" ]
5+
branches:
6+
- '*'
7+
tags:
8+
- 'v[0-9]+.[0-9]+.[0-9]+'
69
pull_request:
7-
branches: [ "main" ]
10+
branches:
11+
- '*'
812

913
env:
1014
BUILD_TYPE: Release

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# README
22

33
![CMake Multi Platform Build](https://github.com/thorstendikmann/fomss2024aud/actions/workflows/cmake-multi-platform.yml/badge.svg?branch=main)
4-
![CMake Single Platform Build](https://github.com/thorstendikmann/fomss2024aud/actions/workflows/cmake-single-platform.yml/badge.svg?branch=main)
54
![docker](https://github.com/thorstendikmann/fomss2024aud/actions/workflows/valgrind.yml/badge.svg?branch=main)
5+
![gtest](https://github.com/thorstendikmann/fomss2024aud/actions/workflows/gtest.yml/badge.svg?branch=main)
66
![valgrind](https://github.com/thorstendikmann/fomss2024aud/actions/workflows/valgrind.yml/badge.svg?branch=main)
77
![cppcheck](https://github.com/thorstendikmann/fomss2024aud/actions/workflows/cppcheck.yml/badge.svg?branch=main)
88

0 commit comments

Comments
 (0)