File tree Expand file tree Collapse file tree 1 file changed +36
-36
lines changed
Expand file tree Collapse file tree 1 file changed +36
-36
lines changed Original file line number Diff line number Diff line change 1010 PYTHON_VERSION : " 3.10"
1111
1212jobs :
13- test :
14- runs-on : ubuntu-latest
15- steps :
16- - uses : actions/checkout@v4
17-
18- - name : Set up Python
19- uses : actions/setup-python@v5
20- with :
21- python-version : ${{ env.PYTHON_VERSION }}
22-
23- - name : Install uv
24- run : |
25- curl -LsSf https://astral.sh/uv/install.sh | sh
26- echo "$HOME/.cargo/bin" >> $GITHUB_PATH
27-
28- - name : Cache uv dependencies
29- uses : actions/cache@v4
30- with :
31- path : |
32- ~/.cache/uv
33- .venv
34- key : ${{ runner.os }}-uv-${{ hashFiles('pyproject.toml') }}
35- restore-keys : |
36- ${{ runner.os }}-uv-
37-
38- - name : Install dependencies
39- run : |
40- uv venv
41- source .venv/bin/activate
42- uv sync
43-
44- - name : Run tests
45- run : |
46- source .venv/bin/activate
47- pytest tests/
13+ # test:
14+ # runs-on: ubuntu-latest
15+ # steps:
16+ # - uses: actions/checkout@v4
17+
18+ # - name: Set up Python
19+ # uses: actions/setup-python@v5
20+ # with:
21+ # python-version: ${{ env.PYTHON_VERSION }}
22+
23+ # - name: Install uv
24+ # run: |
25+ # curl -LsSf https://astral.sh/uv/install.sh | sh
26+ # echo "$HOME/.cargo/bin" >> $GITHUB_PATH
27+
28+ # - name: Cache uv dependencies
29+ # uses: actions/cache@v4
30+ # with:
31+ # path: |
32+ # ~/.cache/uv
33+ # .venv
34+ # key: ${{ runner.os }}-uv-${{ hashFiles('pyproject.toml') }}
35+ # restore-keys: |
36+ # ${{ runner.os }}-uv-
37+
38+ # - name: Install dependencies
39+ # run: |
40+ # uv venv
41+ # source .venv/bin/activate
42+ # uv sync
43+
44+ # - name: Run tests
45+ # run: |
46+ # source .venv/bin/activate
47+ # pytest tests/
4848
4949 lint :
5050 runs-on : ubuntu-latest
8484 ruff format --check .
8585
8686 build :
87- needs : [test, lint]
87+ needs : [lint]
8888 runs-on : ubuntu-latest
8989 steps :
9090 - uses : actions/checkout@v4
You can’t perform that action at this time.
0 commit comments