diff --git a/.github/workflows/clippy.yml b/.github/workflows/clippy.yml index 544f20c552..db83ae29d7 100644 --- a/.github/workflows/clippy.yml +++ b/.github/workflows/clippy.yml @@ -157,6 +157,8 @@ jobs: run: cargo clippy -p test_const_ptrs - name: Clippy test_constructors run: cargo clippy -p test_constructors + - name: Clippy test_constructors_client + run: cargo clippy -p test_constructors_client - name: Clippy test_core run: cargo clippy -p test_core - name: Clippy test_debug diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 63b2323875..0589234aee 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -183,6 +183,8 @@ jobs: run: cargo test -p test_const_ptrs --target ${{ matrix.target }} ${{ matrix.etc }} - name: Test test_constructors run: cargo test -p test_constructors --target ${{ matrix.target }} ${{ matrix.etc }} + - name: Test test_constructors_client + run: cargo test -p test_constructors_client --target ${{ matrix.target }} ${{ matrix.etc }} - name: Test test_core run: cargo test -p test_core --target ${{ matrix.target }} ${{ matrix.etc }} - name: Test test_debug @@ -253,10 +255,10 @@ jobs: run: cargo test -p test_resources --target ${{ matrix.target }} ${{ matrix.etc }} - name: Test test_result run: cargo test -p test_result --target ${{ matrix.target }} ${{ matrix.etc }} - - name: Test test_return_handle - run: cargo test -p test_return_handle --target ${{ matrix.target }} ${{ matrix.etc }} - name: Clean run: cargo clean + - name: Test test_return_handle + run: cargo test -p test_return_handle --target ${{ matrix.target }} ${{ matrix.etc }} - name: Test test_return_struct run: cargo test -p test_return_struct --target ${{ matrix.target }} ${{ matrix.etc }} - name: Test test_riddle