Skip to content

Commit

Permalink
disable cache and other versions
Browse files Browse the repository at this point in the history
  • Loading branch information
berombau committed Mar 19, 2024
1 parent ac6079e commit 4e91311
Showing 1 changed file with 11 additions and 17 deletions.
28 changes: 11 additions & 17 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,7 @@ on:
push:
branches: [main]
pull_request:
branches: [main]
schedule:
- cron: "0 5 1,15 * *"

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
branches: "*"

jobs:
test:
Expand All @@ -23,14 +17,14 @@ jobs:
fail-fast: false
matrix:
include:
- os: ubuntu-latest
python: "3.9"
- os: ubuntu-latest
python: "3.11"
# - os: ubuntu-latest
# python: "3.9"
- os: ubuntu-latest
python: "3.11"
pip-flags: "--pre"
name: PRE-RELEASE DEPENDENCIES
# - os: ubuntu-latest
# python: "3.11"
# pip-flags: "--pre"
# name: PRE-RELEASE DEPENDENCIES

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

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

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
cache: "pip"
cache-dependency-path: "**/pyproject.toml"
# cache: "pip"
# cache-dependency-path: "**/pyproject.toml"

- name: Install test dependencies
run: |
Expand Down

0 comments on commit 4e91311

Please sign in to comment.