Merge pull request #18 from fireblade-engine/feature/actions
GitHub actions
This commit is contained in:
commit
31c3849293
|
|
@ -16,7 +16,7 @@ jobs:
|
|||
- name: Checkout
|
||||
uses: actions/checkout@v1
|
||||
- name: Generate Documentation
|
||||
uses: SwiftDocOrg/swift-doc@master
|
||||
uses: SwiftDocOrg/swift-doc@1.0.0-beta.3
|
||||
with:
|
||||
inputs: "Sources/FirebladeECS"
|
||||
output: "Documentation"
|
||||
|
|
@ -25,4 +25,4 @@ jobs:
|
|||
with:
|
||||
path: "Documentation"
|
||||
env:
|
||||
GH_PERSONAL_ACCESS_TOKEN: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }}
|
||||
GH_PERSONAL_ACCESS_TOKEN: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }}
|
||||
|
|
|
|||
|
|
@ -0,0 +1,10 @@
|
|||
name: Check markdown links
|
||||
|
||||
on: push
|
||||
|
||||
jobs:
|
||||
markdown-link-check:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@master
|
||||
- uses: gaurav-nelson/github-action-markdown-link-check@v1
|
||||
|
|
@ -1,10 +1,11 @@
|
|||
# Fireblade ECS (Entity-Component System)
|
||||
[](https://travis-ci.com/fireblade-engine/ecs)
|
||||
[](LICENSE)
|
||||
[](https://swift.org/download)
|
||||
[](https://swift.org)
|
||||
[](#)
|
||||
[](#)
|
||||
[](https://codecov.io/gh/fireblade-engine/ecs)
|
||||
[](https://github.com/fireblade-engine/ecs/wiki)
|
||||
|
||||
This is a **dependency free**, **lightweight**, **fast** and **easy to use** [Entity-Component System](https://en.wikipedia.org/wiki/Entity_component_system) implementation in Swift. It is developed and maintained as part of the [Fireblade Game Engine project](https://github.com/fireblade-engine).
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue