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