Skip to content

Commit 42486e9

Browse files
run ci on every push, need to test pandas 3
1 parent 9328d54 commit 42486e9

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

.github/workflows/ci.yaml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
name: CI
22

3-
on: [pull_request, push, workflow_dispatch]
3+
on:
4+
pull_request:
5+
push:
6+
branches:
7+
- master
8+
workflow_dispatch:
49

510
jobs:
611
test:
@@ -17,10 +22,10 @@ jobs:
1722

1823
steps:
1924
- name: Checkout source
20-
uses: actions/checkout@v2
25+
uses: actions/checkout@v6
2126

2227
- name: Setup python
23-
uses: actions/setup-python@v2
28+
uses: actions/setup-python@v6
2429
with:
2530
python-version: ${{ matrix.python-version }}
2631

reqs/base-requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
numpy>=1.14.0
22
scipy>=1.7.0
3-
pandas>=2.1
3+
pandas>=2.1,<3.0
44
matplotlib>=3.0
55
autograd>=1.5
66
autograd-gamma>=0.3

0 commit comments

Comments
 (0)