Skip to content

Merge pull request #5 from tgodzik/update-main #14

Merge pull request #5 from tgodzik/update-main

Merge pull request #5 from tgodzik/update-main #14

Workflow file for this run

name: CI
on:
push:
branches:
- main
tags:
- "v*"
pull_request:
jobs:
test:
runs-on: ${{ matrix.OS }}
strategy:
fail-fast: false
matrix:
OS: ["ubuntu-latest", "windows-latest", "macos-latest"]
SCALA_VERSION: ["3.3.3"]
include:
- OS: "ubuntu-latest"
SCALA_VERSION: "2.12.20"
- OS: "ubuntu-latest"
SCALA_VERSION: "2.13.14"
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
submodules: true
- uses: coursier/[email protected]
- uses: coursier/[email protected]
with:
jvm: temurin:17
- name: Test
run: ./mill "__[$SCALA_VERSION].compile" && ./mill "__[$SCALA_VERSION].test"
if: runner.os != 'Windows'
env:
SCALA_VERSION: ${{ matrix.SCALA_VERSION }}
- name: Test
run: ./mill.bat "__[$SCALA_VERSION].compile" && ./mill.bat "__[$SCALA_VERSION].test"
shell: bash
if: runner.os == 'Windows'
env:
SCALA_VERSION: ${{ matrix.SCALA_VERSION }}
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
submodules: true
- uses: coursier/[email protected]
- uses: coursier/[email protected]
with:
jvm: 17
apps: scalafmt:3.8.3
- run: scalafmt --check
publish:
needs: [test, format]
if: github.event_name == 'push'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
submodules: true
- uses: coursier/[email protected]
- uses: coursier/[email protected]
with:
jvm: temurin:17
- run: .github/scripts/gpg-setup.sh
env:
PGP_SECRET: ${{ secrets.PGP_SECRET }}
- name: Release
run: ./mill -i publishSonatype __.publishArtifacts
env:
PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }}
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }}