Skip to content

Commit 6beb245

Browse files
authored
Merge pull request #1 from zouzias/zouzias-cicd
Setup Github Actions for test / run
2 parents 73edaf0 + 0e91c59 commit 6beb245

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/scala.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Scala CI
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
9+
permissions:
10+
contents: read
11+
12+
jobs:
13+
build:
14+
15+
runs-on: ubuntu-latest
16+
17+
steps:
18+
- uses: actions/checkout@v3
19+
- name: Set up JDK 11
20+
uses: actions/setup-java@v3
21+
with:
22+
java-version: '11'
23+
distribution: 'temurin'
24+
- name: Run tests
25+
run: sbt test
26+
- name: Generate verilog
27+
run: sbt run

0 commit comments

Comments
 (0)