Skip to content

upgrade pekko versions #33

upgrade pekko versions

upgrade pekko versions #33

Workflow file for this run

name: Build and test
on:
pull_request:
push:
branches:
- main
jobs:
build-test:
if: github.repository == 'apache/pekko-http-quickstart-java.g8'
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Java 17
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 17
- name: Cache Coursier cache
uses: coursier/cache-action@v6
- name: sbt test
run: sbt test
- name: Maven
run: |-
sbt new file://$PWD --name=hello-world --force && pushd hello-world && mvn test
- name: Gradle
run: |-
sbt new file://$PWD --name=hello-world --force && pushd hello-world && ./gradlew --console=plain build
build-docs:
if: github.repository == 'apache/pekko-http-quickstart-java.g8'
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Java 11
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 11
- name: Cache Coursier cache
uses: coursier/cache-action@v6
- name: sbt & Paradox
run: sbt test docs/paradox