Allow more custom stuffs #5
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: Testing | |
on: | |
push: | |
branches: main | |
workflow_dispatch: | |
jobs: | |
Job: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@main | |
with: | |
submodules: true | |
- name: Setup Haxe | |
uses: krdlab/setup-haxe@master | |
with: | |
haxe-version: latest | |
- name: Compiling | |
run: | | |
haxelib install hxcpp --quiet | |
haxelib dev hxdiscord_rpc . | |
cd sample | |
haxe build.hxml |