File tree Expand file tree Collapse file tree 1 file changed +19
-1
lines changed Expand file tree Collapse file tree 1 file changed +19
-1
lines changed Original file line number Diff line number Diff line change 12
12
paths-ignore :
13
13
- ' **.md'
14
14
- ' **.rst'
15
+ workflow_dispatch :
16
+ schedule :
17
+ - cron : ' 0 6 * * 1' # Monday at 6:00 UTC
15
18
16
19
# This will cancel previous run if a newer job that obsoletes the said previous
17
20
# run, is started.
@@ -21,7 +24,7 @@ concurrency:
21
24
cancel-in-progress : true
22
25
23
26
jobs :
24
- build :
27
+ build-stable :
25
28
runs-on : ubuntu-latest
26
29
steps :
27
30
- uses : actions/checkout@v4
33
36
run : pip install mesa pytest
34
37
- name : Test with pytest
35
38
run : pytest test_examples.py
39
+
40
+ build-main :
41
+ runs-on : ubuntu-latest
42
+ steps :
43
+ - uses : actions/checkout@v4
44
+ - name : Set up Python
45
+ uses : actions/setup-python@v5
46
+ with :
47
+ python-version : " 3.12"
48
+ - name : Install dependencies
49
+ run : |
50
+ pip install pytest
51
+ pip install -U git+https://github.com/projectmesa/mesa@main#egg=mesa
52
+ - name : Test with pytest
53
+ run : pytest test_examples.py
You can’t perform that action at this time.
0 commit comments