Skip to content

Commit a8a1151

Browse files
committed
drop
1 parent 7a1de3c commit a8a1151

File tree

3 files changed

+4
-23
lines changed

3 files changed

+4
-23
lines changed

.github/scripts/requirements.txt

Lines changed: 0 additions & 1 deletion
This file was deleted.

.github/workflows/build-and-test.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,5 @@ jobs:
2424
- uses: Swatinem/rust-cache@v2
2525
with:
2626
shared-key: "test-${{ inputs.os }}-${{ matrix.group }}"
27-
- uses: actions/setup-python@v5
28-
with:
29-
python-version: "3.12"
30-
cache: "pip"
31-
cache-dependency-path: .github/scripts/requirements.txt
32-
- run: pip install -r .github/scripts/requirements.txt
3327
- name: Run tests
34-
run: python .github/scripts/ci_config.py run-group ${{ matrix.group }} --os ${{ inputs.os }}
28+
run: python3 .github/scripts/ci_config.py run-group ${{ matrix.group }} --os ${{ inputs.os }}

.github/workflows/rust.yml

Lines changed: 3 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -52,15 +52,9 @@ jobs:
5252
groups: ${{ steps.verify.outputs.groups }}
5353
steps:
5454
- uses: actions/checkout@v6
55-
- uses: actions/setup-python@v5
56-
with:
57-
python-version: "3.12"
58-
cache: "pip"
59-
cache-dependency-path: .github/scripts/requirements.txt
60-
- run: pip install -r .github/scripts/requirements.txt
61-
- name: Verify all creates are assigned and get matrix
55+
- name: Verify all crates are assigned and get matrix
6256
id: verify
63-
run: python .github/scripts/ci_config.py verify-groups
57+
run: python3 .github/scripts/ci_config.py verify-groups
6458

6559
test-ubuntu:
6660
name: Ubuntu
@@ -101,14 +95,8 @@ jobs:
10195
- uses: actions/checkout@v6
10296
- uses: dtolnay/rust-toolchain@stable
10397
- uses: Swatinem/rust-cache@v2
104-
- uses: actions/setup-python@v5
105-
with:
106-
python-version: "3.12"
107-
cache: "pip"
108-
cache-dependency-path: .github/scripts/requirements.txt
109-
- run: pip install -r .github/scripts/requirements.txt
11098
- name: Run no-std checks
111-
run: python .github/scripts/ci_config.py run-no-std
99+
run: python3 .github/scripts/ci_config.py run-no-std
112100

113101
integrations_tests:
114102
name: Integration Tests

0 commit comments

Comments
 (0)