diff options
| -rw-r--r-- | .gitlab-ci.yml | 21 | ||||
| -rw-r--r-- | README.md | 2 | 
2 files changed, 23 insertions, 0 deletions
| diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..bc65171 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,21 @@ +image: "rust" + +tests: +  before_script: +    - rustup install nightly +  script: +    - cargo +nightly test + +format: +  before_script: +    - rustup install nightly +    - rustup +nightly component add rustfmt +  script: +    - cargo +nightly fmt -- --check + +clippy: +  before_script: +    - rustup install nightly +    - rustup +nightly component add clippy +  script: +    - if cargo +nightly clippy 2>&1 | tee /dev/stderr | egrep "^(warning|error):" >/dev/null ; then exit 1 ; else exit 0 ; fi @@ -1,6 +1,8 @@  raidgrep  ======== +[](https://gitlab.com/dunj3/raidgrep) +  A tool for searching your local Guild Wars 2/arcdps raid & fractal log files.  Building | 
