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 1212 paths-ignore :
1313 - ' **.md'
1414 - ' **.rst'
15+ workflow_dispatch :
16+ schedule :
17+ - cron : ' 0 6 * * 1' # Monday at 6:00 UTC
1518
1619# This will cancel previous run if a newer job that obsoletes the said previous
1720# run, is started.
@@ -21,7 +24,7 @@ concurrency:
2124 cancel-in-progress : true
2225
2326jobs :
24- build :
27+ build-stable :
2528 runs-on : ubuntu-latest
2629 steps :
2730 - uses : actions/checkout@v4
3336 run : pip install mesa pytest
3437 - name : Test with pytest
3538 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