File tree Expand file tree Collapse file tree 1 file changed +12
-3
lines changed
Expand file tree Collapse file tree 1 file changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -4,15 +4,24 @@ on: push
44jobs :
55 build :
66 runs-on : ubuntu-latest
7+ strategy :
8+ matrix :
9+ python-version : ["3.9"]
710 steps :
811 - uses : actions/checkout@v4
912 - name : Install Python
1013 uses : actions/setup-python@v4
1114 - name : Install the latest version of rye
1215 uses : eifinger/setup-rye@v2
13- - name : config
16+ with :
17+ enable-cache : true
18+ cache-prefix : ${{ matrix.python-version }}
19+ - name : Pin python-version ${{ matrix.python-version }}
20+ if : steps.setup-rye.outputs.cache-hit != 'true'
21+ run : rye pin ${{ matrix.python-version }}
22+ - name : Install dependencies
23+ if : steps.setup-rye.outputs.cache-hit != 'true'
1424 run : |
15- rye config --set-bool behavior.use-uv=true
16- rye symc --no-lock
25+ rye sync --no-lock
1726 # - name: Build with Rye
1827 # run: rye build
You can’t perform that action at this time.
0 commit comments