mirror of
https://github.com/arcan1s/ffxivbis.git
synced 2026-01-10 03:33:42 +00:00
33 lines
604 B
YAML
33 lines
604 B
YAML
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: 18
|
|
|
|
- name: install sbt
|
|
uses: eclipse-score/apt-install@main
|
|
with:
|
|
packages: wget
|
|
- run: |
|
|
wget https://scala.jfrog.io/artifactory/debian/sbt-1.11.7.deb
|
|
sudo dpkg -i sbt-1.11.7.deb
|
|
|
|
- name: run tests
|
|
run: make tests
|