Skip to content

Commit

Permalink
Infrastructure: Add Actions testing file
Browse files Browse the repository at this point in the history
  • Loading branch information
LaCuneta committed Jan 9, 2024
1 parent 430a7c8 commit f1ed4b2
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: build-and-test

on:
push:
workflow_dispatch:

jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: actions/setup-java@v3
with:
distribution: 'liberica'
java-version: '17.0'
java-package: jdk

- run: sbt -v update compile
- run: sbt -v test

0 comments on commit f1ed4b2

Please sign in to comment.