File tree Expand file tree Collapse file tree 1 file changed +32
-0
lines changed Expand file tree Collapse file tree 1 file changed +32
-0
lines changed Original file line number Diff line number Diff line change
1
+ # Workflow for tests with GitHub Actions
2
+ on :
3
+ workflow_dispatch :
4
+
5
+ jobs :
6
+ dump_contexts_to_log :
7
+ runs-on : ubuntu-latest
8
+ steps :
9
+ - name : Dump GitHub context
10
+ env :
11
+ GITHUB_CONTEXT : ${{ toJson(github) }}
12
+ run : echo "$GITHUB_CONTEXT"
13
+ - name : Dump job context
14
+ env :
15
+ JOB_CONTEXT : ${{ toJson(job) }}
16
+ run : echo "$JOB_CONTEXT"
17
+ - name : Dump steps context
18
+ env :
19
+ STEPS_CONTEXT : ${{ toJson(steps) }}
20
+ run : echo "$STEPS_CONTEXT"
21
+ - name : Dump runner context
22
+ env :
23
+ RUNNER_CONTEXT : ${{ toJson(runner) }}
24
+ run : echo "$RUNNER_CONTEXT"
25
+ - name : Dump strategy context
26
+ env :
27
+ STRATEGY_CONTEXT : ${{ toJson(strategy) }}
28
+ run : echo "$STRATEGY_CONTEXT"
29
+ - name : Dump matrix context
30
+ env :
31
+ MATRIX_CONTEXT : ${{ toJson(matrix) }}
32
+ run : echo "$MATRIX_CONTEXT"
You can’t perform that action at this time.
0 commit comments