Add CI and quality check workflows for automated testing and validation

This commit is contained in:
2025-06-10 22:54:29 +02:00
parent 69b127148d
commit 873d0f6de5
3 changed files with 96 additions and 0 deletions

17
.github/workflows/CI.yaml vendored Normal file
View File

@@ -0,0 +1,17 @@
name: CI
on:
push:
branches: [ "master", "dev" ]
# Publish semver tags as releases.
tags: [ 'v*.*.*' ]
pull_request:
branches: ["master", "dev"]
release:
types: [created]
jobs:
quality:
uses: ./.github/workflows/quality.yaml
permissions:
contents: read