Merge pull request #5 from lewisjkl/update-workflow #19
This file contains 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: Continuous Integration | |
on: | |
pull_request: | |
branches: ["*"] | |
push: | |
branches: ["main"] | |
tags: ["v*"] | |
concurrency: | |
group: ci-${{ github.ref }} | |
cancel-in-progress: true | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
jobs: | |
build: | |
name: Build and Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout current branch (full) | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup Java | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
- name: Get mill version | |
run: echo "MILL_VERSION=$(cat .mill-version)" >> $GITHUB_ENV | |
- name: Setup Mill | |
uses: jodersky/setup-mill@master | |
with: | |
mill-version: ${{ env.MILL_VERSION }} | |
- name: Check formatting | |
run: mill -k --disable-ticker __.checkFormat | |
- name: Compile | |
run: mill -k --disable-ticker __.compile | |
- name: Run tests | |
run: mill -k --disable-ticker __.test | |
- name: Mdoc | |
run: mill -k --disable-ticker readme.mdoc | |
- name: Publish ${{ github.ref }} | |
if: startsWith(github.ref, 'refs/tags/v') | |
run: mill -i io.kipp.mill.ci.release.ReleaseModule/publishAll | |
env: | |
PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }} | |
PGP_SECRET: ${{ secrets.PGP_SECRET }} | |
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }} | |
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }} |