mirror of
https://github.com/arcan1s/ffxivbis.git
synced 2025-06-28 06:41:41 +00:00
exception safety, github actions and scalafmt
This commit is contained in:
22
.github/workflows/run-tests.yml
vendored
Normal file
22
.github/workflows/run-tests.yml
vendored
Normal file
@ -0,0 +1,22 @@
|
||||
name: tests
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
pull_request:
|
||||
branches: [ master ]
|
||||
|
||||
jobs:
|
||||
run-tests:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Setup JDK
|
||||
uses: actions/setup-java@v2
|
||||
with:
|
||||
distribution: temurin
|
||||
java-version: 8
|
||||
- name: Build and Test
|
||||
run: sbt -v +test
|
Reference in New Issue
Block a user