Skip to content

fmt

fmt #7

Workflow file for this run

name: CI
on:
pull_request:
branches: ['**']
push:
branches: ['**']
tags: [v*]
jobs:
build:
name: Build and Test
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != 'stac-utils/stac4s'
strategy:
matrix:
os: [ubuntu-latest]
java: [8, 11]
distribution: [temurin]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: coursier/cache-action@v6
- uses: actions/setup-java@v3
with:
distribution: ${{ matrix.distribution }}
java-version: ${{ matrix.java }}
- name: Check formatting
run: sbt ";scalafix --check; scalafmtCheck; scalafmtSbtCheck; scapegoat;"
- name: Build project
run: sbt +test
# publish:
# name: Publish Artifacts
# needs: [build]
# if: github.event_name != 'pull_request' && (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v'))
# strategy:
# matrix:
# os: [ubuntu-latest]
# java: [8]
# distribution: [temurin]
# runs-on: ${{ matrix.os }}
# steps:
# - uses: actions/checkout@v2
# with:
# fetch-depth: 0
# - uses: coursier/cache-action@v6
# - uses: actions/setup-java@v2
# with:
# distribution: ${{ matrix.distribution }}
# java-version: ${{ matrix.java }}
#
# - name: Release
# run: sbt ci-release
# env:
# PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }}
# PGP_SECRET: ${{ secrets.PGP_SECRET }}
# SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}
# SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }}
# if: ${{ env.SONATYPE_PASSWORD != '' && env.SONATYPE_USERNAME != '' }}