diff options
author | Melody Horn <melody@boringcactus.com> | 2021-04-01 23:36:14 -0600 |
---|---|---|
committer | Melody Horn <melody@boringcactus.com> | 2021-04-01 23:36:14 -0600 |
commit | 0793cbaa213c8237a3b916b368a13727e9b643ca (patch) | |
tree | 31e26a5a039a4862cdae46df34bc8b87211b7a29 /.gitlab-ci.yml | |
parent | d12f9f563968ea8471b4929936ac4f8553810428 (diff) | |
download | makers-0793cbaa213c8237a3b916b368a13727e9b643ca.tar.gz makers-0793cbaa213c8237a3b916b368a13727e9b643ca.zip |
use someone else's CI since i'm not rolling my own anytime soon
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..d7149ec --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,12 @@ +default: + image: rust:latest + +test: + script: + - cargo test --no-fail-fast + - cargo test --no-fail-fast --no-default-features + - rustup component add clippy + - cargo clippy + - cargo clippy --no-default-features + - rustup component add rustfmt + - cargo fmt -- --check |