diff options
| author | Laurenz <laurmaedje@gmail.com> | 2022-11-03 16:13:35 +0100 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2022-11-03 16:13:35 +0100 |
| commit | 46921a8c283718402322d4d09c0bd1d9194278b1 (patch) | |
| tree | d218e7845c0491570d5535a4515c1c0f956f37b6 /.github/workflows | |
| parent | 37a7afddfaffd44cb9bc013c9506599267e08983 (diff) | |
Separate test crate
This removes the not-really-cyclic dependency that confuses rust-analyzer. See also: https://github.com/rust-lang/rust-analyzer/issues/2414
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/rust.yml | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index c7dc91bd..db77d154 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -20,13 +20,6 @@ jobs: - name: Checkout source code uses: actions/checkout@v2 - - name: Install Rust - uses: actions-rs/toolchain@v1 - with: - profile: minimal - toolchain: ${{ matrix.rust }} - override: true - - name: Dependency cache uses: Swatinem/rust-cache@v1 @@ -34,10 +27,10 @@ jobs: uses: actions-rs/cargo@v1 with: command: build - args: --all-features + args: --all - name: Test uses: actions-rs/cargo@v1 with: command: test - args: --all-features + args: --all |
