Add ChaserEnemy
style pathing to npc
#824
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [push, pull_request] | |
jobs: | |
build-linux: | |
name: Build (ubuntu) | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
path: ./kristal | |
- name: Install Dependencies | |
run: | | |
pip3 install pe_tools | |
- name: Download LÖVE | |
run: | | |
curl -L https://github.com/love2d/love/releases/download/11.5/love-11.5-win64.zip -o love.zip | |
7z x love.zip | |
rm love.zip | |
- name: Build | |
run: | | |
python3 ./kristal/build.py --kristal ./kristal --love ./love-11.5-win64 | |
- name: Upload Build | |
uses: actions/upload-artifact@v4 | |
with: | |
name: output | |
path: ./output |