Skip to content

Commit 60eccec

Browse files
committed
update build to print time info
1 parent 99c86ad commit 60eccec

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/build.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ on:
44
push:
55
branches:
66
- master
7+
pull_request:
8+
branches:
9+
- master
710

811
jobs:
912

@@ -30,6 +33,21 @@ jobs:
3033
- name: Install sphinx
3134
run: pip3 install pylint Sphinx sphinx-rtd-theme
3235

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+
run: |
43+
echo "Locale information:"
44+
locale # This will print locale information for further debugging
45+
46+
- name: Print IP Address
47+
run: |
48+
echo "Public IP Address:"
49+
curl ifconfig.me # This will print the public IP address of the GitHub runner
50+
3351
- name: Run unittests
3452
env:
3553
SECRET_IO_KEY: ${{ secrets.CI_IO_KEY }}

0 commit comments

Comments
 (0)