diff --git a/.github/workflows/clippy.yml b/.github/workflows/clippy.yml index 6d3598d385..e500c71bfe 100644 --- a/.github/workflows/clippy.yml +++ b/.github/workflows/clippy.yml @@ -231,6 +231,8 @@ jobs: run: cargo clippy -p test_query_signature - name: Clippy test_readme run: cargo clippy -p test_readme + - name: Clippy test_ref_params + run: cargo clippy -p test_ref_params - name: Clippy test_reference run: cargo clippy -p test_reference - name: Clippy test_reference_client diff --git a/.github/workflows/raw-dylib.yml b/.github/workflows/raw-dylib.yml index 354716b5f4..4f0150ab44 100644 --- a/.github/workflows/raw-dylib.yml +++ b/.github/workflows/raw-dylib.yml @@ -260,10 +260,12 @@ jobs: run: cargo test -p test_query_signature --target ${{ matrix.target }} ${{ matrix.etc }} - name: Test test_readme run: cargo test -p test_readme --target ${{ matrix.target }} ${{ matrix.etc }} - - name: Test test_reference - run: cargo test -p test_reference --target ${{ matrix.target }} ${{ matrix.etc }} + - name: Test test_ref_params + run: cargo test -p test_ref_params --target ${{ matrix.target }} ${{ matrix.etc }} - name: Clean run: cargo clean + - name: Test test_reference + run: cargo test -p test_reference --target ${{ matrix.target }} ${{ matrix.etc }} - name: Test test_reference_client run: cargo test -p test_reference_client --target ${{ matrix.target }} ${{ matrix.etc }} - name: Test test_reference_float @@ -362,6 +364,8 @@ jobs: run: cargo test -p windows_x86_64_gnu --target ${{ matrix.target }} ${{ matrix.etc }} - name: Test windows_x86_64_gnullvm run: cargo test -p windows_x86_64_gnullvm --target ${{ matrix.target }} ${{ matrix.etc }} + - name: Clean + run: cargo clean - name: Test windows_x86_64_msvc run: cargo test -p windows_x86_64_msvc --target ${{ matrix.target }} ${{ matrix.etc }} - name: Check diff diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 202194112c..6a39c14fdd 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -257,10 +257,12 @@ jobs: run: cargo test -p test_query_signature --target ${{ matrix.target }} ${{ matrix.etc }} - name: Test test_readme run: cargo test -p test_readme --target ${{ matrix.target }} ${{ matrix.etc }} - - name: Test test_reference - run: cargo test -p test_reference --target ${{ matrix.target }} ${{ matrix.etc }} + - name: Test test_ref_params + run: cargo test -p test_ref_params --target ${{ matrix.target }} ${{ matrix.etc }} - name: Clean run: cargo clean + - name: Test test_reference + run: cargo test -p test_reference --target ${{ matrix.target }} ${{ matrix.etc }} - name: Test test_reference_client run: cargo test -p test_reference_client --target ${{ matrix.target }} ${{ matrix.etc }} - name: Test test_reference_float @@ -359,6 +361,8 @@ jobs: run: cargo test -p windows_x86_64_gnu --target ${{ matrix.target }} ${{ matrix.etc }} - name: Test windows_x86_64_gnullvm run: cargo test -p windows_x86_64_gnullvm --target ${{ matrix.target }} ${{ matrix.etc }} + - name: Clean + run: cargo clean - name: Test windows_x86_64_msvc run: cargo test -p windows_x86_64_msvc --target ${{ matrix.target }} ${{ matrix.etc }} - name: Check diff