We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99c86ad commit 60eccecCopy full SHA for 60eccec
.github/workflows/build.yml
@@ -4,6 +4,9 @@ on:
4
push:
5
branches:
6
- master
7
+ pull_request:
8
+ branches:
9
+ - master
10
11
jobs:
12
@@ -30,6 +33,21 @@ jobs:
30
33
- name: Install sphinx
31
34
run: pip3 install pylint Sphinx sphinx-rtd-theme
32
35
36
+ - name: Print Timezone
37
+ run: |
38
+ echo "Timezone information:"
39
+ date # This will print the current date, time, and timezone information
40
+
41
+ - name: Print Locale Information
42
43
+ echo "Locale information:"
44
+ locale # This will print locale information for further debugging
45
46
+ - name: Print IP Address
47
48
+ echo "Public IP Address:"
49
+ curl ifconfig.me # This will print the public IP address of the GitHub runner
50
51
- name: Run unittests
52
env:
53
SECRET_IO_KEY: ${{ secrets.CI_IO_KEY }}
0 commit comments