Add CODEOWNERS file (#88) #402
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| # Only run push on main | |
| push: | |
| branches: | |
| - main | |
| paths-ignore: | |
| - '**/*.md' | |
| # Always run on PRs | |
| pull_request: | |
| branches: [ main ] | |
| merge_group: | |
| concurrency: | |
| group: 'ci-${{ github.event.merge_group.head_ref || github.head_ref }}-${{ github.workflow }}' | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| name: "Build" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Configure JDK | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'zulu' | |
| java-version: '23' | |
| - name: Setup Gradle | |
| uses: gradle/actions/setup-gradle@v4 | |
| - name: Test | |
| run: | | |
| # Run compileCommonMainKotlinMetadata to ensure metadata compilation works too, as it's | |
| # not covered under the normal check command | |
| ./gradlew check compileCommonMainKotlinMetadata | |
| - name: Publish (default branch only) | |
| if: github.repository == 'slackhq/EitherNet' && github.ref == 'refs/heads/main' | |
| run: ./gradlew publish -PmavenCentralUsername=${{ secrets.SONATYPEUSERNAME }} -PmavenCentralPassword=${{ secrets.SONATYPEPASSWORD }} |