You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+8-9Lines changed: 8 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,27 +2,24 @@
2
2
Seminar Project of the Seminar "Advanced Techniques for Analysis and Visualization of Software Data" of CGS, HPI and DEF in the Summer Term 2022
3
3
4
4
# Usage
5
-
⚠ This will not work until we made our first release
6
-
7
-
Create a new GitHub Actions workflow in your project, e.g. at .github/workflows/hiviser.yml. The content of the file should be in the following format:
5
+
Create a new GitHub Actions workflow in your project, e.g. at `.github/workflows/analytics-embedding.yml`. The content of the file should be in the following format:
8
6
```yaml
9
-
name: HiViSer
7
+
name: Analytics Treemap Embedding
10
8
11
9
on:
12
10
# Trigger the workflow on push or pull request,
13
11
# but only for the main branch
14
12
push:
15
13
branches:
16
14
- main
17
-
# Replace pull_request with pull_request_target if you
18
-
# plan to use this action with forks, see the Limitations section
15
+
19
16
pull_request:
20
17
branches:
21
18
- main
22
19
23
20
jobs:
24
-
run-hiviser:
25
-
name: Run HiViSer
21
+
analytics-embedding:
22
+
name: Run Analytics Treemap Embedding 🔎
26
23
runs-on: ubuntu-latest
27
24
28
25
steps:
@@ -31,9 +28,11 @@ jobs:
31
28
32
29
- name: Run Hiviser Action
33
30
uses: hpicgs/hiviser-action@v0
34
-
# Optional, use if you want to analyse a specific folder
35
31
with:
32
+
# Optional, use if you want to analyse a specific folder
0 commit comments