Skip to content

Merge branch 'master' into refactor_github_actions_workflows #752

Merge branch 'master' into refactor_github_actions_workflows

Merge branch 'master' into refactor_github_actions_workflows #752

Workflow file for this run

name: CI
on:
pull_request:
branches: ['**']
push:
branches: ['**']
tags: [v*]
jobs:
build:
uses: softwaremill/github-actions-workflows/.github/workflows/build-scala.yml@main
# run on external PRs, but not on internal PRs since those will be run by push to branch
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
with:
java-opts: '-Xmx6G -Xss4M'
sttp-native: 1
install-libidn2: true
mima:
uses: softwaremill/github-actions-workflows/.github/workflows/mima.yml@main
# run on external PRs, but not on internal PRs since those will be run by push to branch
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
publish:
uses: softwaremill/github-actions-workflows/.github/workflows/publish-release.yml@main
needs: [build]
if: github.event_name != 'pull_request' && (startsWith(github.ref, 'refs/tags/v'))
secrets: inherit
with:
java-opts: "-Xmx4G -Xss4M"
sttp-native: 1