We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6656ab7 commit 8b60bbbCopy full SHA for 8b60bbb
2 files changed
.github/actions/setup-python-pip-tox/action.yml
@@ -11,6 +11,8 @@ runs:
11
- uses: actions/setup-python@v6
12
with:
13
python-version: ${{ inputs.python }}
14
- - run: |
+ - name: upgrade pip and install tox
15
+ shell: bash
16
+ run: |
17
python -m pip -q install --upgrade pip "setuptools==65.6.2"
18
pip -q install "tox<4" tox-gh-actions
.github/actions/setup-rust-poetry/action.yml
@@ -15,6 +15,7 @@ runs:
restore-keys: |
${{ runner.os }}-poetry-
- name: install Rust and Poetry
19
run : |
20
curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain stable --profile minimal
21
source "$HOME/.cargo/env"
0 commit comments