Skip to content

Update sbt-ci-release to 1.6.1 (#1263) #923

Update sbt-ci-release to 1.6.1 (#1263)

Update sbt-ci-release to 1.6.1 (#1263) #923

Workflow file for this run

# This file was automatically generated by sbt-github-actions using the
# githubWorkflowGenerate task. You should add and commit this file to
# your git repository. It goes without saying that you shouldn't edit
# this file by hand! Instead, if you wish to make changes, you should
# change your sbt build configuration to revise the workflow description
# to meet your needs, then regenerate this file.
name: Continuous Integration
on:
pull_request:
branches: ['**']
push:
branches: ['**']
tags: [SPECS2-*]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
build:
name: Build and Test
strategy:
matrix:
os: [ubuntu-latest]
scala: [3.3.3]
java: [temurin@18]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout current branch (full)
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Java (temurin@18)
if: matrix.java == 'temurin@18'
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 18
cache: sbt
- name: Setup sbt
uses: sbt/setup-sbt@v1
- name: Check formatting ✔
run: sbt '++ ${{ matrix.scala }}' scalafmtCheckAll
- name: Check that workflows are up to date
run: sbt '++ ${{ matrix.scala }}' githubWorkflowCheck
- name: Build and test 🔧
run: sbt '++ ${{ matrix.scala }}' 'testOnly -- xonly exclude ci,website timefactor 3'
publish:
name: Publish Artifacts
needs: [build]
if: github.event_name != 'pull_request' && (startsWith(github.ref, 'refs/tags/SPECS2-'))
strategy:
matrix:
os: [ubuntu-latest]
scala: [3.3.3]
java: [temurin@18]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout current branch (full)
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Java (temurin@18)
if: matrix.java == 'temurin@18'
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 18
cache: sbt
- name: Setup sbt
uses: sbt/setup-sbt@v1
- name: Check binary compatibility ✔
run: sbt mimaReportBinaryIssues
- name: Release to Sonatype 📇
env:
PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }}
PGP_SECRET: ${{ secrets.PGP_SECRET }}
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }}
run: sbt ci-release
- name: Install Pandoc 🏁
uses: r-lib/actions/setup-pandoc@v1
with:
pandoc-version: 2.7.3
- name: Generate the specs2 website 📚
run: sbt unidoc 'guide/testOnly *Website -- xonly'
- name: Update the website 🚀
uses: JamesIves/[email protected]
with:
branch: gh-pages
clean: false
folder: target/specs2-reports/site