1
0
mirror of https://github.com/CPunch/Cosmo.git synced 2025-04-15 01:10:07 +00:00

Added svg to README, whitelisted commits only effecting the binary

This commit is contained in:
CPunch 2021-03-16 15:05:20 -05:00 committed by cpunch
parent bff2799bb6
commit 0e730b9c51
2 changed files with 7 additions and 0 deletions

@ -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

@ -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