added bin_digits #22
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: haxeparser | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
haxe-version: ['4.3.4', 'nightly'] | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v1 | |
- name: install Hashlink | |
uses: pxshadow/[email protected] | |
- name: Use Node.js 12 | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 12 | |
- name: Run npm install | |
run: npm ci | |
- name: Install Haxe version ${{ matrix.haxe-version }} | |
run: | | |
npx lix download haxe ${{ matrix.haxe-version }} | |
npx lix use haxe ${{ matrix.haxe-version }} | |
- name: Run lix download | |
run: npx lix download | |
- name: Print versions | |
run: | | |
npx haxe -version | |
npx neko -version | |
npx haxelib list | |
- name: Run eval tests | |
run: npx haxe build.hxml | |
- name: Run NodeJs tests | |
run: npx haxe buildJs.hxml | |
- name: Run Hashlink tests | |
run: npx haxe buildHl.hxml | |
- name: Run JVM tests | |
run: npx haxe buildJvm.hxml |