13 lines
195 B
YAML
13 lines
195 B
YAML
version: 2
|
|
jobs:
|
|
build:
|
|
docker:
|
|
- image: circleci/rust:latest
|
|
steps:
|
|
- checkout
|
|
- run:
|
|
name: build and test
|
|
command: cargo build && cargo test
|
|
|
|
|
|
|