From 3ac549055e777116ffd7dccf6127c92aa2bb4bf0 Mon Sep 17 00:00:00 2001 From: Kenny Kerr Date: Tue, 20 Aug 2024 19:53:58 -0500 Subject: [PATCH] yml --- .github/workflows/clippy.yml | 2 ++ .github/workflows/test.yml | 6 ++++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/clippy.yml b/.github/workflows/clippy.yml index b8959b991f..d349de0f4e 100644 --- a/.github/workflows/clippy.yml +++ b/.github/workflows/clippy.yml @@ -171,6 +171,8 @@ jobs: run: cargo clippy -p test_event - name: Clippy test_extensions run: cargo clippy -p test_extensions + - name: Clippy test_futures + run: cargo clippy -p test_futures - name: Clippy test_handles run: cargo clippy -p test_handles - name: Clippy test_helpers diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index fe68bd00f3..3b00cb88ca 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -197,6 +197,8 @@ jobs: run: cargo test -p test_event --target ${{ matrix.target }} ${{ matrix.etc }} - name: Test test_extensions run: cargo test -p test_extensions --target ${{ matrix.target }} ${{ matrix.etc }} + - name: Test test_futures + run: cargo test -p test_futures --target ${{ matrix.target }} ${{ matrix.etc }} - name: Test test_handles run: cargo test -p test_handles --target ${{ matrix.target }} ${{ matrix.etc }} - name: Test test_helpers @@ -253,10 +255,10 @@ jobs: run: cargo test -p test_riddle --target ${{ matrix.target }} ${{ matrix.etc }} - name: Test test_standalone run: cargo test -p test_standalone --target ${{ matrix.target }} ${{ matrix.etc }} - - name: Test test_string_param - run: cargo test -p test_string_param --target ${{ matrix.target }} ${{ matrix.etc }} - name: Clean run: cargo clean + - name: Test test_string_param + run: cargo test -p test_string_param --target ${{ matrix.target }} ${{ matrix.etc }} - name: Test test_strings run: cargo test -p test_strings --target ${{ matrix.target }} ${{ matrix.etc }} - name: Test test_structs