aboutsummaryrefslogtreecommitdiff
path: root/.circleci/config.yml
blob: 9637cdf250b4b5450642cd29d4272106da20faa1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
version: 2.1

jobs:
  test-all:
    docker:
      - image: cimg/rust:1.63.0
    steps:
      - checkout
      - run: cargo --version
      - run: rustup install nightly
      - run: rustup default nightly
      - run:
          name: Run Tests
          command: cargo test --workspace --all-features

workflows:
  test:
    jobs:
      - test-all