Skip to content

Commit 8c50616

Browse files
committed
Add github action
1 parent 0c1ae7b commit 8c50616

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

.github/workflows/build.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Test
2+
on:
3+
push:
4+
branches:
5+
- master
6+
pull_request:
7+
workflow_dispatch:
8+
jobs:
9+
build:
10+
runs-on: ubuntu-20.04
11+
12+
steps:
13+
- uses: actions/checkout@v2
14+
- uses: coursier/cache-action@v6
15+
- uses: olafurpg/setup-scala@v12
16+
17+
- name: Test
18+
run: sbt test
19+
20+
# - name: Debug over SSH (tmate)
21+
# # if: ${{ failure() }}
22+
# uses: mxschmitt/action-tmate@v3
23+
# with:
24+
# limit-access-to-actor: true

0 commit comments

Comments
 (0)