chore(deps): update dependency com.softwaremill.sttp.tapir:tapir-json-circe to v1.11.9 #636
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: Build test and deploy | |
on: | |
push: | |
branches: | |
- main | |
- alpha | |
- beta | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
wartremover: | |
name: Wartremover lint | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout current branch | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup Scala | |
uses: actions/[email protected] | |
with: | |
distribution: 'temurin' | |
java-version: '17.0.4' | |
cache: 'sbt' | |
- name: Wartremover checks | |
run: sbt wartremoverInspect | |
scalafix: | |
name: Scalafix lint | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout current branch | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup Scala | |
uses: actions/[email protected] | |
with: | |
distribution: 'temurin' | |
java-version: '17.0.4' | |
cache: 'sbt' | |
- name: Scalafix checks | |
run: sbt 'scalafixAll --check' | |
scalafmt: | |
name: Scalafmt lint | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout current branch | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup Scala | |
uses: actions/[email protected] | |
with: | |
distribution: 'temurin' | |
java-version: '17.0.4' | |
cache: 'sbt' | |
- name: Scalafix checks | |
run: sbt scalafmtCheckAll | |
tests: | |
name: Run unit tests | |
strategy: | |
matrix: | |
os: [ubuntu-22.04] | |
java: ['17.0.4'] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout current branch | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup Scala | |
uses: actions/[email protected] | |
with: | |
distribution: 'temurin' | |
java-version: ${{ matrix.java }} | |
cache: 'sbt' | |
- name: Scalatest | |
run: sbt test | |
- name: Generate coverage report | |
run: sbt jacocoAggregate | |
- name: Get scala version | |
id: get-scala-version | |
run: | | |
export SCALA_VERSION=`sbt --no-colors --error 'set aggregate := false; print scalaVersion'` | |
echo "::set-output name=scala-version::$SCALA_VERSION" | |
- name: Publish coverage report | |
if: ${{ matrix.os }} == 'ubuntu-22.04' && ${{ matrix.java-version }} == '17.0.4' # Find a better solution instead hardcoded versions | |
uses: codecov/[email protected] | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
files: ./target/scala-${{steps.get-scala-version.outputs.scala-version}}/jacoco/report/aggregate/jacoco.xml | |
verbose: true | |
docsite: | |
name: Build documentation site | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout current branch | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup Scala | |
uses: actions/[email protected] | |
with: | |
distribution: 'temurin' | |
java-version: '17.0.4' | |
cache: 'sbt' | |
- name: Build docsite | |
run: sbt ubidocGenerate | |
publish: | |
name: Publish | |
needs: [wartremover, scalafix, scalafmt, tests, docsite] | |
runs-on: ubuntu-22.04 | |
if: github.event_name != 'pull_request' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/alpha' || github.ref == 'refs/heads/beta') | |
steps: | |
- name: Setup atedeg-bot | |
id: atedeg-bot | |
uses: tibdex/[email protected] | |
with: | |
app_id: ${{ secrets.ATEDEG_BOT_APP_ID }} | |
private_key: ${{ secrets.ATEDEG_BOT_PRIVATE_KEY }} | |
- name: Checkout current branch | |
uses: actions/checkout@v3 | |
with: | |
token: ${{ steps.atedeg-bot.outputs.token }} | |
fetch-depth: 0 | |
- name: Login to Docker Hub | |
uses: docker/[email protected] | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Release | |
uses: atedeg/[email protected] | |
with: | |
java-version: "17.0.4" | |
pgp-secret: ${{ secrets.PGP_SECRET }} | |
pgp-passphrase: ${{ secrets.PGP_PASSPHRASE }} | |
sonatype-username: ${{ secrets.SONATYPE_USERNAME }} | |
sonatype-password: ${{ secrets.SONATYPE_PASSWORD }} | |
github-token: ${{ steps.atedeg-bot.outputs.token }} |