Move to github actions
This commit is contained in:
parent
beb908b6d5
commit
c6b1b5b571
2 changed files with 4 additions and 24 deletions
|
@ -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
|
|
|
@ -1,10 +1,9 @@
|
||||||
# Grid
|
# Grid
|
||||||
|
|
||||||
[](https://docs.rs/grid)
|
[](https://docs.rs/grid)
|
||||||
[](https://crates.io/crates/grid)
|
[](https://crates.io/crates/grid)
|
||||||
[](https://crates.io/crates/grid)
|
[](https://github.com/becheran/grid/actions)
|
||||||
[](https://gitlab.com/becheran/grid_ci/pipelines)
|
[](https://opensource.org/licenses/MIT)
|
||||||
[](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
|
||||||
|
|
Loading…
Reference in a new issue