making us have good links

This commit is contained in:
Jack Mac 2021-09-12 18:13:47 -04:00
parent b26243293b
commit c62c609de5
2 changed files with 6 additions and 3 deletions

View File

@ -21,7 +21,7 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2
with: {submodules: true}
with: { submodules: true }
- uses: hecrj/setup-rust-action@v1
with:
components: clippy
@ -65,7 +65,7 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2
with: {submodules: true}
with: { submodules: true }
- uses: hecrj/setup-rust-action@v1
with:
components: rustfmt
@ -134,6 +134,8 @@ jobs:
${{ runner.os }}-target-test-${{ matrix.rust }}-
- run: cargo test --workspace --all-targets
- run: cargo test --workspace --doc
# run to check for lint problems
- run: cargo doc
# - run: cargo test --manifest-path imgui-gfx-examples/Cargo.toml --no-default-features --features directx
# if: runner.os == 'Windows'
- run: cargo test --manifest-path imgui-winit-support/Cargo.toml --no-default-features --features winit-19

View File

@ -1,4 +1,5 @@
#![allow(clippy::float_cmp)]
#![cfg_attr(debug_assertions, allow(clippy::float_cmp))]
#![deny(rustdoc::broken_intra_doc_links)]
pub extern crate imgui_sys as sys;
use std::cell;