v 0.1.0
Some checks failed
continuous-integration/drone Build is failing

This commit is contained in:
Justine
2023-01-11 17:36:06 +01:00
commit 346d3c5b16
8 changed files with 950 additions and 0 deletions

16
.drone.yml Normal file
View File

@ -0,0 +1,16 @@
kind: pipeline
type: docker
name: default
steps:
- name: Compile
image: rust:1.66.0-alpine3.17
commands:
- apk add build-base make
- cargo build --verbose
- name: Tests
image: rust:1.66.0-alpine3.17
commands:
- cargo test