Skip to content

Commit

Permalink
Add environment to the other steps.
Browse files Browse the repository at this point in the history
  • Loading branch information
jugglerchris committed Feb 2, 2022
1 parent 8031147 commit 63108d5
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -143,13 +143,19 @@ jobs:
rustc --version; cargo --version; rustup --version
- run:
name: Calculate dependencies
command: cargo generate-lockfile
command: |
export PATH=$USERPROFILE/.cargo/bin:$PATH
cargo generate-lockfile
- run:
name: Build all targets
command: cargo build --all --all-targets
command: |
export PATH=$USERPROFILE/.cargo/bin:$PATH
cargo build --all --all-targets
- run:
name: Run all tests
command: cargo test --all
command: |
export PATH=$USERPROFILE/.cargo/bin:$PATH
cargo test --all
workflows:
Expand Down

0 comments on commit 63108d5

Please sign in to comment.