diff options
| author | Sho Sakuma <me@m1sk9.dev> | 2026-01-20 21:07:38 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-01-20 21:07:38 +0900 |
| commit | 491420e94db9b21d350ee49df45eb129dec960d2 (patch) | |
| tree | 7828da3e59c677d7778786586bb9c95061b82df5 /.github/workflows | |
| parent | 3b1d35deb3488428dfcff0cd8448c0b0ed620903 (diff) | |
| parent | 061bd455faad138ca1aefeb73be534198a4e0a44 (diff) | |
| download | LunaticChat-0.4.1.tar.gz LunaticChat-0.4.1.tar.bz2 LunaticChat-0.4.1.zip | |
Merge pull request #49 from m1sk9/fix-kana-conversionv0.4.1
fix: Fix Kana conversion with voiced consonants
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/ci.yaml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 987ceb4..6cab034 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -11,6 +11,10 @@ on: jobs: build_plugin: runs-on: ubuntu-24.04 + permissions: + contents: read + pull-requests: write + issues: write steps: - name: Checkout repository uses: actions/checkout@v6 @@ -24,6 +28,18 @@ jobs: - name: Check ktlint run: ./gradlew ktlintCheck --no-daemon + - name: Run tests + run: ./gradlew test --no-daemon + continue-on-error: true + + - name: Post test results to PR + if: github.event_name == 'pull_request' && always() + env: + GH_TOKEN: ${{ github.token }} + GITHUB_REPOSITORY: ${{ github.repository }} + GITHUB_REF: ${{ github.ref }} + run: .github/scripts/post-test-results.sh + - name: Build with shadowJar run: ./gradlew :platform-paper:shadowJar --parallel --no-daemon |
