Move to github actions

This commit is contained in:
Armin 2022-08-17 21:48:23 +02:00
parent beb908b6d5
commit c6b1b5b571
2 changed files with 4 additions and 24 deletions

View file

@ -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

View file

@ -1,10 +1,9 @@
# Grid # Grid
[![](https://docs.rs/grid/badge.svg)](https://docs.rs/grid) [![docs](https://docs.rs/grid/badge.svg)](https://docs.rs/grid)
[![](http://meritbadge.herokuapp.com/grid)](https://crates.io/crates/grid) [![crates.io](https://badgen.net/crates/d/grid)](https://crates.io/crates/grid)
[![](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)
[![Build Status](https://gitlab.com/becheran/grid_ci/badges/master/pipeline.svg)](https://gitlab.com/becheran/grid_ci/pipelines) [![license](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![](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. 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 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