From d241d4f628a58d1bed47b2d72e4096d75ffdf17e Mon Sep 17 00:00:00 2001 From: Uriah Date: Mon, 18 Dec 2023 21:03:21 +0800 Subject: [PATCH] update workflow --- .github/workflows/test.yml | 4 +++- .gitignore | 3 ++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 86a03a2..aef643f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -21,7 +21,9 @@ jobs: profile: minimal override: true - name: Run tests - run: cargo test --verbose --release + run: cargo test --release --verbose --lib + - name: Run Ignored Test + run: cargo test --release --verbose -- --ignored - name: Build run: cargo build --verbose --release - name: Upload Artifact diff --git a/.gitignore b/.gitignore index 2a0038a..96f76cd 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /target -.idea \ No newline at end of file +.idea +.DS_Store