Skip to content

Bump braces from 3.0.2 to 3.0.3 in /typescript (#10) #11

Bump braces from 3.0.2 to 3.0.3 in /typescript (#10)

Bump braces from 3.0.2 to 3.0.3 in /typescript (#10) #11

Workflow file for this run

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will build a Java project with Gradle and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-gradle
name: Java CI with Gradle
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
- name: Setup Gradle
uses: gradle/actions/setup-gradle@af1da67850ed9a4cedd57bfd976089dd991e2582 # v4.0.0
with:
gradle-version: 8.9
- name: Build with Gradle 8.9
run: gradle build
working-directory: ./java
- name: Test with Gradle 8.9
run: gradle test
working-directory: ./java