From c6b1b5b57186f769752b9e11bacdb11280fbd526 Mon Sep 17 00:00:00 2001 From: Armin Date: Wed, 17 Aug 2022 21:48:23 +0200 Subject: [PATCH] Move to github actions --- .gitlab-ci.yml | 19 ------------------- README.md | 9 ++++----- 2 files changed, 4 insertions(+), 24 deletions(-) delete mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml deleted file mode 100644 index 50d1307..0000000 --- a/.gitlab-ci.yml +++ /dev/null @@ -1,19 +0,0 @@ -image: 'rust:latest' - -stages: - - build - -build-rust-latest: - stage: build - script: - - cargo build --verbose - - cargo test --verbose - - cargo test --no-default-features --verbose - -build-rust-nightly: - stage: build - image: rustlang/rust:nightly - script: - - cargo build --verbose - - cargo test --verbose - - cargo test --no-default-features --verbose diff --git a/README.md b/README.md index 76643dd..6421939 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,9 @@ # Grid -[![](https://docs.rs/grid/badge.svg)](https://docs.rs/grid) -[![](http://meritbadge.herokuapp.com/grid)](https://crates.io/crates/grid) -[![](https://badgen.net/crates/d/grid)](https://crates.io/crates/grid) -[![Build Status](https://gitlab.com/becheran/grid_ci/badges/master/pipeline.svg)](https://gitlab.com/becheran/grid_ci/pipelines) -[![](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) +[![docs](https://docs.rs/grid/badge.svg)](https://docs.rs/grid) +[![crates.io](https://badgen.net/crates/d/grid)](https://crates.io/crates/grid) +[![build status](https://github.com/becheran/grid/actions/workflows/rust.yml/badge.svg)](https://github.com/becheran/grid/actions) +[![license](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) Data structure grid for rust. Provide a two dimensional data structure for rust that is easy to use and fast. Most of the functionality provided by the [std::vec::Vec](https://doc.rust-lang.org/std/vec/struct.Vec.html) type for one dimensional vectors