Skip to content

Commit 1b072d2

Browse files
committed
Some update.
1 parent e0cce59 commit 1b072d2

File tree

1 file changed

+20
-19
lines changed

1 file changed

+20
-19
lines changed

.github/workflows/ci_15_schedule_basic_tests.yml

Lines changed: 20 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -3,68 +3,69 @@ name: Basic Tests
33
on:
44
# Every 15th of the month at midnight
55
schedule:
6-
- cron: "0 0 15 * *"
6+
- cron: "0 0 22 * *"
77
# Manually triggered
88
workflow_dispatch:
99

1010
jobs:
1111
basic-tests:
1212
runs-on: ubuntu-latest
13-
13+
1414
steps:
1515
- uses: actions/checkout@v4
16-
16+
with:
17+
submodules: recursive
1718
- name: Install dependencies
1819
run: |
1920
sudo apt-get update
2021
sudo apt-get install -y build-essential libgmp-dev libeigen3-dev libboost-all-dev
21-
22+
2223
- name: Build basic tests
2324
run: |
2425
cd src_basic
2526
make Test_Thompson_sampling Test_timing Test_PresenceProgram Test_namelist Test_String_Split Test_serialization Test_EmpiricalDistribution Test_hash_table Test_bool Test_face Test_String_Optimization Test_String_Trim Test_String_Conversion Test_Namelist_Substr Test_Basic_string_Optimizations
26-
27+
2728
- name: Test_Thompson_sampling
2829
run: cd src_basic && ./Test_Thompson_sampling
29-
30+
3031
- name: Test_timing
3132
run: cd src_basic && ./Test_timing
32-
33+
3334
- name: Test_PresenceProgram
3435
run: cd src_basic && ./Test_PresenceProgram
35-
36+
3637
- name: Test_namelist
3738
run: cd src_basic && ./Test_namelist
38-
39+
3940
- name: Test_String_Split
4041
run: cd src_basic && ./Test_String_Split
41-
42+
4243
- name: Test_serialization
4344
run: cd src_basic && ./Test_serialization
44-
45+
4546
- name: Test_EmpiricalDistribution
4647
run: cd src_basic && ./Test_EmpiricalDistribution
47-
48+
4849
- name: Test_hash_table
4950
run: cd src_basic && ./Test_hash_table
50-
51+
5152
- name: Test_bool
5253
run: cd src_basic && ./Test_bool
53-
54+
5455
- name: Test_face
5556
run: cd src_basic && ./Test_face
56-
57+
5758
- name: Test_String_Optimization
5859
run: cd src_basic && ./Test_String_Optimization
59-
60+
6061
- name: Test_String_Trim
6162
run: cd src_basic && ./Test_String_Trim
62-
63+
6364
- name: Test_String_Conversion
6465
run: cd src_basic && ./Test_String_Conversion
65-
66+
6667
- name: Test_Namelist_Substr
6768
run: cd src_basic && ./Test_Namelist_Substr
68-
69+
6970
- name: Test_Basic_string_Optimizations
7071
run: cd src_basic && ./Test_Basic_string_Optimizations

0 commit comments

Comments
 (0)