From 471589d3790361e540696821245a7c122ee0aae3 Mon Sep 17 00:00:00 2001 From: CPunch Date: Tue, 16 Mar 2021 15:05:20 -0500 Subject: [PATCH] Added svg to README, whitelisted commits only effecting the binary --- README.md | 2 ++ appveyor.yml | 5 +++++ 2 files changed, 7 insertions(+) diff --git a/README.md b/README.md index fafa827..e44cb80 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,6 @@ # Cosmo +[![AppVeyor](https://ci.appveyor.com/api/projects/status/github/CPunch/Cosmo?svg=true)](https://ci.appveyor.com/project/CPunch/Cosmo) + Cosmo is a portable scripting language loosely based off of Lua. Cosmo easily allows the user to extend the language through the use of Proto objects, which describe the behavior of Objects. For example the following is a simple Vector Proto which describes behavior for a Vector-like object. ```lua diff --git a/appveyor.yml b/appveyor.yml index 365d9b3..9587987 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -5,6 +5,11 @@ version: 'cosmo-0.1.{build}' # only: # - main +# only run CI if we changed actual code +only_commits: + files: + - src/ + # images we're using image: - Ubuntu2004