From 206c5d5ef22c07490d1e4d65ae9d55804f902781 Mon Sep 17 00:00:00 2001 From: Mattia Valzelli Date: Fri, 2 Dec 2022 18:10:40 +0100 Subject: [PATCH] Add status badges for CI and package index (#8) To display the heath of the package we expose in the README: * build status * Swift versions supported * Platforms supported By doing this we can declare close #1 --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 3780cb4..dbab885 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,9 @@ # Secrecy +[![CI](https://github.com/mattia/swift-secrecy/actions/workflows/ci.yml/badge.svg)](https://github.com/mattia/swift-secrecy/actions/workflows/ci.yml) +[![](https://img.shields.io/endpoint?url=https%3A%2F%2Fswiftpackageindex.com%2Fapi%2Fpackages%2Fmattia%2Fswift-secrecy%2Fbadge%3Ftype%3Dswift-versions)](https://swiftpackageindex.com/mattia/swift-secrecy) +[![](https://img.shields.io/endpoint?url=https%3A%2F%2Fswiftpackageindex.com%2Fapi%2Fpackages%2Fmattia%2Fswift-secrecy%2Fbadge%3Ftype%3Dplatforms)](https://swiftpackageindex.com/mattia/swift-secrecy) + `swift-secrecy` is a simple type wrapper to help you avoid accidentally exposing secrets. This package is heavily inspired by the [`secrecy` Rust crate][rust-secrecy]