Compare commits

..

No commits in common. "309aca6036833859bb9c6c25a92e18aa3ad19234" and "0c22b31e1c63108145aec10f9895bf7eb23f6a76" have entirely different histories.

3 changed files with 21 additions and 10 deletions

View File

@ -12,10 +12,14 @@ jobs:
- name: Checkout code - name: Checkout code
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Use system Python - name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install UV
run: | run: |
echo "Python $(python3 --version)" curl -LsSf https://astral.sh/uv/install.sh | sh
echo "UV=$(uv --version)"
echo "$HOME/.local/bin" >> $GITHUB_PATH echo "$HOME/.local/bin" >> $GITHUB_PATH
- name: Install dependencies - name: Install dependencies

View File

@ -19,10 +19,14 @@ jobs:
with: with:
fetch-depth: 0 fetch-depth: 0
- name: Use system Python - name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install UV
run: | run: |
echo "Python $(python3 --version)" curl -LsSf https://astral.sh/uv/install.sh | sh
echo "UV=$(uv --version)"
echo "$HOME/.local/bin" >> $GITHUB_PATH echo "$HOME/.local/bin" >> $GITHUB_PATH
- name: Get version from tag or pyproject - name: Get version from tag or pyproject
@ -79,9 +83,14 @@ jobs:
- name: Checkout code - name: Checkout code
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Use system Python - name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install UV
run: | run: |
echo "Python $(python3 --version)" curl -LsSf https://astral.sh/uv/install.sh | sh
echo "$HOME/.local/bin" >> $GITHUB_PATH echo "$HOME/.local/bin" >> $GITHUB_PATH
- name: Install dependencies - name: Install dependencies

View File

@ -265,5 +265,3 @@ MIT License
This is an unofficial client. Kwork.ru is not affiliated with this project. This is an unofficial client. Kwork.ru is not affiliated with this project.
Use at your own risk and respect Kwork's terms of service. Use at your own risk and respect Kwork's terms of service.
## CI Test