Skip to content

Commit a515a78

Browse files
committed
Regenerated doc. Add .github
1 parent e324790 commit a515a78

File tree

122 files changed

+21175
-48937
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

122 files changed

+21175
-48937
lines changed

.github/workflows/CI.yml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: Compile and run sbt test
2+
on:
3+
pull_request:
4+
push:
5+
branches:
6+
- main
7+
jobs:
8+
tests:
9+
if: github.event.pull_request.draft == false
10+
runs-on: [self-hosted, linux]
11+
env:
12+
# define Java options for both official sbt and sbt-extras
13+
JAVA_OPTS: -Xss64M -Xms1024M -Xmx8G
14+
JVM_OPTS: -Xss64M -Xms1024M -Xmx8G
15+
steps:
16+
- name: Checkout
17+
uses: actions/checkout@v4
18+
with:
19+
submodules: recursive
20+
- name: Setup JDK
21+
uses: actions/setup-java@v3
22+
with:
23+
distribution: temurin
24+
java-version: 17
25+
- name: Install and unpack sbt
26+
run: |
27+
wget https://github.com/sbt/sbt/releases/download/v1.10.1/sbt-1.10.1.tgz
28+
tar xfz sbt-1.10.1.tgz
29+
echo "PATH=./sbt/bin/:$PATH" >> "$GITHUB_ENV"
30+
- name: Run Tests
31+
run: sbt -Dtest-parallelism=4 -batch test
32+
fail_if_pull_request_is_draft:
33+
if: github.event.pull_request.draft == true
34+
runs-on: [self-hosted, linux]
35+
steps:
36+
- name: Fails in order to indicate that pull request needs to be marked as ready to review and tests workflows need to pass.
37+
run: exit 1

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
target/
22
project/target/
3-
example/target/
3+
example/target/
4+
.bsp

docs/index.html

Lines changed: 74 additions & 167 deletions
Large diffs are not rendered by default.

docs/index.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

docs/lib/MaterialIcons-Regular.eot

-134 KB
Binary file not shown.

docs/lib/MaterialIcons-Regular.ttf

-120 KB
Binary file not shown.

docs/lib/MaterialIcons-Regular.woff

-55.5 KB
Binary file not shown.

docs/lib/abstract_type.svg

Lines changed: 0 additions & 54 deletions
This file was deleted.

docs/lib/class.svg

Lines changed: 0 additions & 54 deletions
This file was deleted.

docs/lib/class_comp.svg

Lines changed: 0 additions & 57 deletions
This file was deleted.

0 commit comments

Comments
 (0)