Skip to content

Correcting the workflow path #1

Correcting the workflow path

Correcting the workflow path #1

Workflow file for this run

name: Cognito Spring Boot Starter CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up JDK
uses: actions/setup-java@v2
with:
java-version: '21'
- name: Build and Test with Gradle
run: ./gradlew clean build
- name: Upload test results
uses: actions/upload-artifact@v2
with:
name: test-results
path: build/reports