From 58aba83fea8739db140ec89139576873de982379 Mon Sep 17 00:00:00 2001 From: Andreas Noack Date: Mon, 22 Jul 2024 22:35:52 +0200 Subject: [PATCH] Fix badges in README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1cfe0a41..b4b218f1 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # StructArrays -[![CI](https://github.com/JuliaArrays/StructArrays.jl/workflows/CI/badge.svg?branch=master)](https://github.com/JuliaArrays/StructArrays.jl/actions?query=workflow%3ACI+branch%3Amaster) -[![codecov.io](http://codecov.io/github/JuliaArrays/StructArrays.jl/coverage.svg?branch=master)](http://codecov.io/github/JuliaArrays/StructArrays.jl?branch=master) +[![CI](https://github.com/JuliaArrays/StructArrays.jl/actions/workflows/CI.yml/badge.svg)](https://github.com/JuliaArrays/StructArrays.jl/actions/workflows/CI.yml) +[![codecov](https://codecov.io/github/JuliaArrays/StructArrays.jl/graph/badge.svg?token=ZzgMbya9U7)](https://codecov.io/github/JuliaArrays/StructArrays.jl) [![](https://img.shields.io/badge/docs-stable-blue.svg)](https://JuliaArrays.github.io/StructArrays.jl/stable) This package defines an array type, `StructArray`, which acts like an array of `struct` elements but which internally is stored as a list of arrays, typically one per field of the `struct`. See the [documentation](https://JuliaArrays.github.io/StructArrays.jl/stable) for details.