Skip to content

Commit 59196ff

Browse files
committed
Run debugger_visualizer on more rustc versions
1 parent 30f51a9 commit 59196ff

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,12 @@ jobs:
4040
# Run tests enabling the serde feature
4141
- name: Run tests with the serde feature
4242
run: cargo test --features "url/serde,url/expose_internals"
43-
# The #[debugger_visualizer] attribute is currently gated behind an unstable feature flag.
44-
# In order to test the visualizers for the url crate, they have to be tested on a nightly build.
43+
# The #[debugger_visualizer] attribute is currently gated behind a feature flag until #[debugger_visualizer]
44+
# is available in all rustc versions past our MSRV. As such, we only run the tests on newer rustc versions.
4545
- name: Run debugger_visualizer tests
4646
if: |
4747
matrix.os == 'windows-latest' &&
48-
matrix.rust == 'nightly'
48+
matrix.rust != '1.56.0'
4949
run: cargo test --test debugger_visualizer --features "url/debugger_visualizer,url_debug_tests/debugger_visualizer" -- --test-threads=1
5050
- name: Test `no_std` support
5151
run: cargo test --no-default-features --features=alloc

0 commit comments

Comments
 (0)