1 parent f9e6a5b commit 4305662Copy full SHA for 4305662
1 file changed
.github/workflows/pr.yaml
@@ -12,11 +12,12 @@ on: [push, pull_request]
12
13
jobs:
14
testing:
15
- runs-on: ubuntu-24.04
+ runs-on: ${{ matrix.os }}
16
env:
17
PYTHONWARNINGS: ignore:DeprecationWarning
18
strategy:
19
matrix:
20
+ os: [ubuntu-24.04]
21
include:
22
- name: Bandit tests
23
target: test-bandit
@@ -46,7 +47,7 @@ jobs:
46
47
- name: Cache uv
48
uses: actions/cache@v3
49
with:
- key: uv-$ImageOS-${{ hashFiles('requirements_all_lock.txt') }}
50
+ key: uv-${{ matrix.os }}-${{ hashFiles('requirements_all_lock.txt') }}
51
path: ${{ env.UV_CACHE_DIR }}
52
- name: Setup Environment
53
run: |
0 commit comments