From 1b8b2eacef74fb15da30ae3bc54506f3591bf549 Mon Sep 17 00:00:00 2001 From: Natalie Martin Date: Tue, 23 Jan 2024 20:03:03 -0700 Subject: [PATCH] Add workflow badge to README Make it so I can see unit test status on the main page of the repo. :) --- .github/workflows/test.yml | 2 +- README.md | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 319de65..64f41e7 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,6 +1,6 @@ # This starter workflow is for a CMake project running on a single platform. There is a different starter workflow if you need cross-platform coverage. # See: https://github.com/actions/starter-workflows/blob/main/ci/cmake-multi-platform.yml -name: CMake on a single platform +name: Unit Tests on: push: diff --git a/README.md b/README.md index 0c55696..b1cf69f 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # libadagio-plusplus +![Unit Test Status](https://github.com/meisekimiu/libadagio-plusplus/actions/workflows/test.yml/badge.svg) + This is a WIP 2D game engine I'm working on. The main focus of this engine is to make it easy to switch between underlying libraries without changing any code besides some humble adapter classes.