Skip to content

Merge pull request #50 from amosproj/34-Develop-and-Document-Basic-Te… #1

Merge pull request #50 from amosproj/34-Develop-and-Document-Basic-Te…

Merge pull request #50 from amosproj/34-Develop-and-Document-Basic-Te… #1

Workflow file for this run

name: Build and Test
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Set up JDK
uses: actions/setup-java@v2
with:
distribution: 'adopt'
java-version: '17'
- name: Build with Gradle
run: ./gradlew build --no-daemon
- name: Run Tests
run: ./gradlew test --no-daemon