File tree Expand file tree Collapse file tree 2 files changed +17
-14
lines changed Expand file tree Collapse file tree 2 files changed +17
-14
lines changed Original file line number Diff line number Diff line change @@ -2,26 +2,29 @@ name: main
2
2
3
3
on :
4
4
pull_request :
5
+ push :
5
6
branches : [main]
6
7
7
8
jobs :
8
9
mac_win_test :
9
10
strategy :
10
11
fail-fast : false
11
12
matrix :
12
- python-version : ['3.11 ']
13
+ python-version : ['3.13 ']
13
14
os : [windows-latest, macos-latest]
14
15
runs-on : ${{ matrix.os }}
15
16
steps :
16
- - uses : actions/checkout@v3
17
+ - uses : actions/checkout@v4
17
18
with :
18
19
fetch-depth : 0
19
- - uses : actions/setup-python@v3
20
+ - uses : actions/setup-python@v5
20
21
with :
21
22
python-version : ${{ matrix.python-version }}
22
23
- name : install dependencies
23
24
run : |
24
25
python -m pip install --upgrade pip
26
+ pip install -r configs/dev/requirements.test.txt
27
+ pip install .
25
28
pip install tox
26
29
- name : tox test
27
30
run : |
@@ -34,10 +37,10 @@ jobs:
34
37
fail-fast : false
35
38
runs-on : ubuntu-latest
36
39
steps :
37
- - name : Set up Python 3.11
38
- uses : actions/setup-python@v3
40
+ - name : Set up Python 3.13
41
+ uses : actions/setup-python@v5
39
42
with :
40
- python-version : ' 3.11 '
43
+ python-version : ' 3.13 '
41
44
- name : Install dependencies
42
45
run : |
43
46
sudo mkdir -p $CU_HOME && sudo chown runner -R $CU_HOME
46
49
echo "$CU_HOME/$PY_DIR/bin" >> $GITHUB_PATH
47
50
echo "$CU_HOME/$PY_DIR/shims" >> $GITHUB_PATH
48
51
- name : Checkout
49
- uses : actions/checkout@v3
52
+ uses : actions/checkout@v4
50
53
with :
51
54
fetch-depth : 0
52
55
- name : lint and test
Original file line number Diff line number Diff line change @@ -21,10 +21,10 @@ jobs:
21
21
CU_HOME : /home/custom
22
22
runs-on : ubuntu-latest
23
23
steps :
24
- - name : Set up Python 3.11
25
- uses : actions/setup-python@v3
24
+ - name : Set up Python 3.13
25
+ uses : actions/setup-python@v5
26
26
with :
27
- python-version : ' 3.11 '
27
+ python-version : ' 3.13 '
28
28
- name : Install dependencies
29
29
run : |
30
30
sudo mkdir -p $CU_HOME && sudo chown runner -R $CU_HOME
@@ -33,15 +33,15 @@ jobs:
33
33
echo "$CU_HOME/$PY_DIR/bin" >> $GITHUB_PATH
34
34
echo "$CU_HOME/$PY_DIR/shims" >> $GITHUB_PATH
35
35
- name : Checkout
36
- uses : actions/checkout@v3
36
+ uses : actions/checkout@v4
37
37
- name : Setup Pages
38
- uses : actions/configure-pages@v3
38
+ uses : actions/configure-pages@v5
39
39
- name : Create documentation html
40
40
run : |
41
41
make docs
42
42
make runDocs
43
43
- name : Upload artifact
44
- uses : actions/upload-pages-artifact@v1
44
+ uses : actions/upload-pages-artifact@v3
45
45
with :
46
46
path : ./public
47
47
deploy :
53
53
steps :
54
54
- name : Deploy to GitHub Pages
55
55
id : deployment
56
- uses : actions/deploy-pages@v2
56
+ uses : actions/deploy-pages@v4
You can’t perform that action at this time.
0 commit comments