Add scalafmt #200
Workflow file for this run
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: ci | |
on: | |
push: | |
branches: | |
- master | |
tags: | |
- '*' | |
pull_request: | |
branches: | |
- master | |
workflow_dispatch: # be able to manually trigger a workflow run | |
env: | |
SCALA_NEXT_VERSION: '3.6.2' | |
# TODO: perherps, it would be nice to allow failure on `SCALA_NEXT_VERSION` as a warning | |
# to avoid too strict dev experiences in the future improvements. | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java: ['11', '17', '21'] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: ${{ matrix.java }} | |
- name: Run tests | |
run: ./mill -i -DscalaNextVersion=${{ env.SCALA_NEXT_VERSION }} __.publishArtifacts + __.test | |
check-binary-compatibility: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: 17 | |
- name: Check Binary Compatibility | |
run: ./mill -i -DscalaNextVersion=${{ env.SCALA_NEXT_VERSION }} __.mimaReportBinaryIssues | |
publish-sonatype: | |
if: github.repository == 'com-lihaoyi/requests-scala' && contains(github.ref, 'refs/tags/') | |
needs: test | |
runs-on: ubuntu-latest | |
env: | |
SONATYPE_PGP_PRIVATE_KEY: ${{ secrets.SONATYPE_PGP_PRIVATE_KEY }} | |
SONATYPE_PGP_PRIVATE_KEY_PASSWORD: ${{ secrets.SONATYPE_PGP_PRIVATE_KEY_PASSWORD }} | |
SONATYPE_USER: ${{ secrets.SONATYPE_USER }} | |
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }} | |
LANG: 'en_US.UTF-8' | |
LC_MESSAGES: 'en_US.UTF-8' | |
LC_ALL: 'en_US.UTF-8' | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: 11 | |
- name: Publish to Maven Central | |
run: | | |
if [[ $(git tag --points-at HEAD) != '' ]]; then | |
echo $SONATYPE_PGP_PRIVATE_KEY | base64 --decode > gpg_key | |
gpg --import --no-tty --batch --yes gpg_key | |
rm gpg_key | |
./mill -i mill.scalalib.PublishModule/publishAll \ | |
--sonatypeCreds $SONATYPE_USER:$SONATYPE_PASSWORD \ | |
--gpgArgs --passphrase=$SONATYPE_PGP_PRIVATE_KEY_PASSWORD,--no-tty,--pinentry-mode,loopback,--batch,--yes,-a,-b \ | |
--publishArtifacts __.publishArtifacts \ | |
--readTimeout 600000 \ | |
--awaitTimeout 600000 \ | |
--release true \ | |
--signed true | |
fi | |
- name: Create GitHub Release | |
id: create_gh_release | |
# WARN: `actions/create-release` is currently unmaintained. It just works now, keep it until it breaks. | |
uses: actions/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token | |
with: | |
tag_name: ${{ github.ref }} | |
release_name: ${{ github.ref }} | |
body: | |
draft: false |