Skip to content

Release

Release #17

Workflow file for this run

name: Release
on:
workflow_dispatch
jobs:
build:
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v4
- run: git config --global user.email "[email protected]"
- run: git config --global user.name "GPP Informatics"
- uses: jrouly/scalafmt-native-action@v3
with:
version: "3.8.1"
- name: Set up JDK 8
uses: actions/setup-java@v4
with:
java-version: '8'
distribution: 'temurin'
- run: sbt "scalafixAll --check"
- name: Run tests
run: make test-all
- name: Release
run: sbt "release cross with-defaults"