Skip to content

Implemented the shoot function and tests #116

Implemented the shoot function and tests

Implemented the shoot function and tests #116

Workflow file for this run

name: Gradle Build and Test
on:
pull_request:
push:
jobs:
build:
name: Build and test
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
distribution: 'corretto'
java-version: '22'
cache: 'gradle'
- name: Build with Gradle
run: ./gradlew build
- name: Run tests with Gradle
run: ./gradlew test