diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 56196c5..be3c0c3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,4 +1,4 @@ -name: Rust CI +name: build on: pull_request: diff --git a/README.md b/README.md index 6799b6d..be8c70d 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # Fixed Index Vector - Rust Crate +[![GitHub Workflow Status](https://github.com/calteran/fixed-index-vec/actions/workflows/build.yml/badge.svg?branch=main)](https://github.com/calteran/fixed-index-vec/) + This crate provides `FixedIndexVec`, a Rust collection that functions like an array with immutable indices. Each value is associated with a unique index upon insertion. The value can be accessed, inserted, and removed with the index serving as the identifier.