From e9ffacda41a469c730cdc6ca4e3f85dfba53f44c Mon Sep 17 00:00:00 2001 From: gluaxspeed Date: Thu, 12 Aug 2021 09:11:54 -0700 Subject: [PATCH] difference is CRLF vs LF somehow --- .gitattributes | 4 ++++ .github/workflows/ci.yml | 9 ++++----- 2 files changed, 8 insertions(+), 5 deletions(-) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000000..97f135a24d --- /dev/null +++ b/.gitattributes @@ -0,0 +1,4 @@ +# Force certain filse to be LF +*.leo text eol=lf +*.out text eol=lf +*.rs text eol=lf diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b733fda941..a55d8e3123 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -93,12 +93,11 @@ jobs: run: | sccache --start-server - - name: Install cargo-all-features - run: | - cargo install cargo-all-features - - name: Test - run: cargo test-all-features --all + uses: actions-rs/cargo@v1 + with: + command: test + args: --all --features ci_skip - name: Print sccache stats run: sccache --show-stats