mirror of
https://github.com/fluencelabs/aqua.git
synced 2024-12-13 02:05:32 +00:00
23 lines
330 B
YAML
23 lines
330 B
YAML
|
name: "test"
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches-ignore:
|
||
|
- master
|
||
|
|
||
|
jobs:
|
||
|
test:
|
||
|
name: "sbt test"
|
||
|
runs-on: "ubuntu-latest"
|
||
|
|
||
|
steps:
|
||
|
- name: Checkout repository
|
||
|
uses: actions/checkout@v2
|
||
|
|
||
|
### Setup
|
||
|
- uses: olafurpg/setup-scala@v10
|
||
|
|
||
|
### Update & build
|
||
|
- name: Test
|
||
|
run: sbt test
|