basic circeci config
This commit is contained in:
parent
69d0fd0d0e
commit
2a64741b88
1 changed files with 15 additions and 0 deletions
15
.circleci/config.yml
Normal file
15
.circleci/config.yml
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
version: 2
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
docker:
|
||||||
|
- image: circleci/rust:latest
|
||||||
|
steps:
|
||||||
|
- checkout
|
||||||
|
- run:
|
||||||
|
name: build and test
|
||||||
|
command: |
|
||||||
|
cargo build
|
||||||
|
cargo test
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue