Merge branch 'master' into development

This commit is contained in:
coderPaddyS 2025-07-14 13:33:47 +02:00 committed by GitHub
commit ec053ee96a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 92 additions and 1 deletions

24
.github/workflows/changelog.yml vendored Normal file
View file

@ -0,0 +1,24 @@
name: Changelog Generation
on:
release:
types: [published]
workflow_dispatch:
jobs:
changelog:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: 'recursive'
ref: master
- uses: rhysd/changelog-from-release/action@v3
with:
file: CHANGELOG.md
pull_request: true
github_token: ${{ secrets.GITHUB_TOKEN }}
commit_summary_template: 'update changelog for %s changes'
args: -l 2
header: |
# Changelog

67
.github/workflows/ci.yml vendored Normal file
View file

@ -0,0 +1,67 @@
name: Continuous Integration
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: "recursive"
- name: Set up JDK environment
uses: actions/setup-java@v3
with:
distribution: "zulu"
java-version: 17
- name: Make gradlew executable
run: chmod +x ./gradlew
- name: Setup Gradle
uses: gradle/gradle-build-action@v2
- name: Run local unit tests
run: bash ./gradlew test --stacktrace
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: "recursive"
- name: Set up JDK environment
uses: actions/setup-java@v3
with:
distribution: "zulu"
java-version: 17
- name: Make gradlew executable
run: chmod +x ./gradlew
- name: Setup Gradle
uses: gradle/gradle-build-action@v2
- name: Run lint check
run: bash ./gradlew lint
- name: Upload lint result
uses: actions/upload-artifact@v4
with:
name: lint-results-debug
path: app/build/reports/lint-results-debug.html
- name: Build the app
run: bash ./gradlew build --stacktrace
- name: Build debug apk
run: bash ./gradlew assembleDebug
- name: Upload debug apk
uses: actions/upload-artifact@v4
with:
name: debug-apk
path: app/build/outputs/apk/debug/*.apk

View file

@ -10,4 +10,4 @@ The following features are provided by the app:
Feel free to contact us via:
Bluesky - @secusoresearch.bsky.social https://bsky.app/profile/secusoresearch.bsky.social
Mastodon - @SECUSO_Research@bawü.social https://xn--baw-joa.social/@SECUSO_Research/
Job opening - https://secuso.aifb.kit.edu/english/Job_Offers.php
Job opening - https://secuso.aifb.kit.edu/english/Job_Offers.php