Skip to content

Setup GitHub actions #1

Setup GitHub actions

Setup GitHub actions #1

Workflow file for this run

name: Build & Test RepCounterBot
on:
push:
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: 17
java-package: jdk
cache: maven
- name: Build and test
run: mvn clean install