From 43e68475456a6ba78cc4ba568376f5d0132a71f9 Mon Sep 17 00:00:00 2001 From: Eliott Teissonniere <10683430+ETeissonniere@users.noreply.github.com> Date: Thu, 15 Aug 2024 17:16:04 -0700 Subject: [PATCH] run both ignored and not ignored tests in CI --- .github/workflows/rust.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 2af7915..be5b020 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -19,6 +19,8 @@ jobs: - name: Build run: cargo build --verbose - name: Run tests + run: cargo test + - name: Run tests (ignored) env: ZYFI_API_KEY: ${{ secrets.ZYFI_API_KEY }} run: cargo test -- --ignored