Skip to content

Commit

Permalink
WIP: ci test for database
Browse files Browse the repository at this point in the history
  • Loading branch information
asandikci committed Jan 23, 2025
1 parent 8c53d09 commit 7b11b52
Showing 1 changed file with 50 additions and 0 deletions.
50 changes: 50 additions & 0 deletions .github/workflows/database_generate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
name: CI

on:
workflow_dispatch:
pull_request:
branches:
- dev
- master
- extended
- stable
- '**-feature-**'
paths-ignore:
- 'README.md'
- 'doc/**'
- 'fastlane/**'
- 'assets/**'
- '.github/**/*.md'
- '.github/FUNDING.yml'
- '.github/ISSUE_TEMPLATE/**'

jobs:
build:
runs-on: ubuntu-latest

permissions: write-all

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: 17
distribution: "temurin"
cache: 'gradle'

- name: Run Java file (test)
run: ./scripts/Main.java

# - name: Generate checksum
# run: |
# sha256sum app/build/outputs/apk/debug/*.apk > app/build/outputs/apk/debug/checksums.txt
# echo "::notice::$(cat app/build/outputs/apk/debug/checksums.txt)"

# - name: Upload APK
# uses: actions/upload-artifact@v4
# with:
# name: app
# path: app/build/outputs/apk/debug/*.apk

0 comments on commit 7b11b52

Please sign in to comment.