Skip to content

Commit

Permalink
tries fixing caching and extends test matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
tholzheim committed Jul 16, 2024
1 parent fd879a2 commit 18a1d41
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,8 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
#os: [ubuntu-latest, macos-latest, windows-latest]
os: [ubuntu-latest]
#python-version: [3.8, 3.9, '3.10','3.11']
python-version: ['3.10']
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.10','3.11', "3.12"]

steps:
- uses: actions/checkout@v4
Expand All @@ -45,7 +43,7 @@ jobs:
id: cache-sqlite
uses: actions/cache@v4
with:
path: $GITHUB_WORKSPACE/.ceurws
path: ${{ github.workspace }}/.ceurws
key: ceurws

- name: fill sqlite
Expand All @@ -56,7 +54,7 @@ jobs:
id: saveSqlite
uses: actions/cache/save@v4
with:
path: $GITHUB_WORKSPACE/.ceurws
path: ${{ github.workspace }}/.ceurws
key: ceurws

- name: Run tests
Expand Down

0 comments on commit 18a1d41

Please sign in to comment.