Skip to content

Commit 5b3d31f

Browse files
committed
DEBUG: Check rustc version in tests
1 parent 25c459d commit 5b3d31f

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,9 @@ jobs:
4242
uses: actions/setup-python@v6
4343
with:
4444
python-version: ${{ matrix.python-version }}
45+
- name: 'Debug: check rustc'
46+
run: |
47+
rustc -V
4548
- name: Restore Rust/Cargo cache
4649
uses: actions/cache/restore@v4
4750
with:
@@ -52,6 +55,9 @@ jobs:
5255
~/.cargo/git/db/
5356
target/
5457
key: ${{ runner.os }}-rust-v4-${{ hashFiles('**/Cargo.lock') }}
58+
- name: 'Debug: check rustc'
59+
run: |
60+
rustc -V
5561
- name: Restore Python/pip cache
5662
uses: actions/cache/restore@v4
5763
with:

0 commit comments

Comments
 (0)