Skip to content
This repository has been archived by the owner on Mar 21, 2024. It is now read-only.

Add Java tour examples #34

Add Java tour examples

Add Java tour examples #34

Workflow file for this run

name: Build and test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build-ts:
# prevent from running on forks
if: github.repository_owner == 'restatedev'
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [19.x]
steps:
- uses: actions/checkout@v3
- uses: bufbuild/buf-setup-action@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
registry-url: 'https://registry.npmjs.org'
- run: npm ci
with:

Check failure on line 27 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / Build and test

Invalid workflow file

The workflow is not valid. .github/workflows/test.yml (Line: 27, Col: 9): Unexpected value 'with' .github/workflows/test.yml (Line: 30, Col: 9): Unexpected value 'with'
build-root-directory: typescript
- run: npm run verify
with:
build-root-directory: typescript
build-java:
# prevent from running on forks
if: github.repository_owner == 'restatedev'
runs-on: ubuntu-latest
strategy:
matrix:
jvm-version: [ 17 ]
steps:
- uses: actions/checkout@v3
- name: Use JVM ${{ matrix.jvm-version }}
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: ${{ matrix.jvm-version }}
- name: Test java tour
uses: gradle/gradle-build-action@v2
with:
arguments: check
build-root-directory: java