File tree Expand file tree Collapse file tree 3 files changed +3141
-7
lines changed Expand file tree Collapse file tree 3 files changed +3141
-7
lines changed Original file line number Diff line number Diff line change @@ -2,9 +2,9 @@ name: Simulation
2
2
3
3
on :
4
4
push :
5
- branches : [ main ]
5
+ branches : [ main, develop ]
6
6
pull_request :
7
- branches : [ main ]
7
+ branches : [ main, develop ]
8
8
9
9
jobs :
10
10
build :
14
14
steps :
15
15
- uses : actions/checkout@v3
16
16
17
+ - name : Cache IEEE 123 model
18
+ id : ieee-123-model
19
+ uses : actions/cache@v3
20
+ with :
21
+ path : 123.glm
22
+ key : ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('123.glm') }}
23
+ restore-keys : |
24
+ ${{ runner.os }}-build-${{ env.cache-name }}-
25
+ ${{ runner.os }}-build-
26
+ ${{ runner.os }}-
27
+
17
28
- name : Run simulation
18
29
run : gridlabd main.glm
30
+
31
+ - name : Save results
32
+ uses : actions/upload-artifact@v3
33
+ with :
34
+ name : IEEE 123 voltage profile
35
+ path : IEEE-123-voltage-profile.png
36
+
You can’t perform that action at this time.
0 commit comments