[workflow] install haxelib dependencies, disable jvm doc build #2
This file contains hidden or 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: test | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| haxe: | |
| - 4.3.7 | |
| - latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install haxe ${{ matrix.haxe }} | |
| uses: krdlab/setup-haxe@master | |
| with: | |
| haxe-version: ${{ matrix.haxe }} | |
| - name: Setup haxe | |
| run: | | |
| haxelib dev om.msgpack . | |
| haxelib install hxcpp | |
| haxelib install hxnodejs | |
| haxelib install utest | |
| - name: Run unit tests | |
| run: haxe test.hxml | |
| - name: Build haxedocs | |
| run: haxe doc.hxml |