Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Maintainer review required for changes to:
# - workflow files (production deploy logic + secrets handling)
# - announcement content (user-facing trusted channel)
#
# Codeowner rules apply only when the matching branch ruleset has
# "Require review from Code Owners" enabled. Without that, this file is
# documentation only.

/.github/ @rainxchzed
/src/main/resources/announcements/ @rainxchzed
14 changes: 13 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,15 @@ on:
pull_request:
branches: [main]

# Cancel an in-flight PR run when the author pushes a new commit; main runs
# never cancel each other.
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}

permissions:
contents: read

jobs:
build:
runs-on: ubuntu-latest
Expand All @@ -28,7 +37,10 @@ jobs:
restore-keys: gradle-${{ runner.os }}-

- name: Compile
run: ./gradlew compileKotlin --no-daemon
run: ./gradlew compileKotlin compileTestKotlin --no-daemon

- name: Validate announcements
run: ./gradlew validateAnnouncements --no-daemon

- name: Test
run: ./gradlew test --no-daemon
Expand Down
Loading