Skip to content

Commit 4e91311

Browse files
committed
disable cache and other versions
1 parent ac6079e commit 4e91311

File tree

1 file changed

+11
-17
lines changed

1 file changed

+11
-17
lines changed

.github/workflows/test.yaml

+11-17
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,7 @@ on:
44
push:
55
branches: [main]
66
pull_request:
7-
branches: [main]
8-
schedule:
9-
- cron: "0 5 1,15 * *"
10-
11-
concurrency:
12-
group: ${{ github.workflow }}-${{ github.ref }}
13-
cancel-in-progress: true
7+
branches: "*"
148

159
jobs:
1610
test:
@@ -23,14 +17,14 @@ jobs:
2317
fail-fast: false
2418
matrix:
2519
include:
26-
- os: ubuntu-latest
27-
python: "3.9"
28-
- os: ubuntu-latest
29-
python: "3.11"
20+
# - os: ubuntu-latest
21+
# python: "3.9"
3022
- os: ubuntu-latest
3123
python: "3.11"
32-
pip-flags: "--pre"
33-
name: PRE-RELEASE DEPENDENCIES
24+
# - os: ubuntu-latest
25+
# python: "3.11"
26+
# pip-flags: "--pre"
27+
# name: PRE-RELEASE DEPENDENCIES
3428

3529
name: ${{ matrix.name }} Python ${{ matrix.python }}
3630

@@ -39,13 +33,13 @@ jobs:
3933
PYTHON: ${{ matrix.python }}
4034

4135
steps:
42-
- uses: actions/checkout@v3
36+
- uses: actions/checkout@v4
4337
- name: Set up Python ${{ matrix.python }}
44-
uses: actions/setup-python@v4
38+
uses: actions/setup-python@v5
4539
with:
4640
python-version: ${{ matrix.python }}
47-
cache: "pip"
48-
cache-dependency-path: "**/pyproject.toml"
41+
# cache: "pip"
42+
# cache-dependency-path: "**/pyproject.toml"
4943

5044
- name: Install test dependencies
5145
run: |

0 commit comments

Comments
 (0)