Stop overriding default-members in CI

This commit is contained in:
Lucien Greathouse
2019-12-10 17:13:37 -08:00
parent d15ef40988
commit ff4e9fb027

View File

@@ -18,10 +18,10 @@ jobs:
run: rustup default ${{ matrix.rust_version }}
- name: Build
run: cargo build --all --locked --verbose
run: cargo build --locked --verbose
- name: Run tests
run: cargo test --all --locked --verbose
run: cargo test --locked --verbose
- name: Rustfmt and Clippy
run: |