Skip to content

Commit

Permalink
Merge pull request #3 from EimaMei/main
Browse files Browse the repository at this point in the history
build stuffz
  • Loading branch information
EimaMei authored Jun 28, 2023
2 parents a54026f + ddb7dd8 commit afd5701
Show file tree
Hide file tree
Showing 5 changed files with 42 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: linux

on:
push:
branches: [ "main" ]
branches: [ "main", "dev" ]
pull_request:
branches: [ "main" ]
branches: [ "main", "dev" ]

jobs:
build:
Expand Down
17 changes: 17 additions & 0 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: macos

on:
push:
branches: [ "main", "dev" ]
pull_request:
branches: [ "main", "dev" ]

jobs:
build:

runs-on: macos-latest

steps:
- uses: actions/checkout@v3
- name: make
run: make
1 change: 1 addition & 0 deletions .github/workflows/useless credit.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
I am copying all of this GitHub make CI from Colleague Riley :trolleybus:
17 changes: 17 additions & 0 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: windows

on:
push:
branches: [ "main", "dev" ]
pull_request:
branches: [ "main", "dev" ]

jobs:
build:

runs-on: windows-latest

steps:
- uses: actions/checkout@v3
- name: make
run: make
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
# Sili Toolchain
![vm workflow linux](https://github.com/EimaMei/sili-toolchain/actions/workflows/linux.yml/badge.svg)
![vm workflow windows](https://github.com/EimaMei/sili-toolchain/actions/workflows/windows.yml/badge.svg)
![vm workflow macos](https://github.com/EimaMei/sili-toolchain/actions/workflows/macos.yml/badge.svg)

Sili Toolchain is a cross-platform software toolchain for modern C programming, providing many new features, improvements and fixes to the language's barebones STL. It is specifically designed for C99 and above but can also be used in C++ codebases.

# Main goals
Expand All @@ -24,7 +28,7 @@ Sili Toolchain strives to strike a balance between having exceptional performanc
- ... and more to come!

# Examples
[needs a rework later]
Examples of most sili's features are utilized in the `examples` folder.

# License
`sili.h` is dual-licensed to the public domain and under the MIT license, meaning it can be used in any want you'd like to. Credit is appreciated but unneeded.
Expand Down

0 comments on commit afd5701

Please sign in to comment.