diff options
author | HampusM <hampus@hampusmat.com> | 2022-10-23 21:10:40 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2022-10-23 21:10:40 +0200 |
commit | 7c607248ff862ac2c856179df899982c17179335 (patch) | |
tree | dd63a40e3200e8e9bd2b28704df91ec9521e5486 | |
parent | 5323c7d96faed4171bbd2d7bfe398159e5b3067c (diff) |
ci: fix config syntax
-rw-r--r-- | .circleci/config.yml | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index 8947236..7e28869 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -10,26 +10,26 @@ jobs: - run: rustup install nightly - run: rustup default nightly - run: - name: Run Tests - command: cargo test --workspace --all-features + name: Run Tests + command: cargo test --workspace --all-features coverage: machine: true steps: - checkout - run: - name: Coverage with docker - command: | - docker run \ - --security-opt seccomp=unconfined \ - -v "${PWD}:/volume" \ - xd009642/tarpaulin:0.22.0-nightly \ - cargo \ - +nightly \ - tarpaulin \ - --workspace \ - --all-features \ - --ciserver circle-ci \ - --coveralls $COVERALLS_REPO_TOKEN + name: Coverage with docker + command: | + docker run \ + --security-opt seccomp=unconfined \ + -v "${PWD}:/volume" \ + xd009642/tarpaulin:0.22.0-nightly \ + cargo \ + +nightly \ + tarpaulin \ + --workspace \ + --all-features \ + --ciserver circle-ci \ + --coveralls $COVERALLS_REPO_TOKEN workflows: test: |