some default dark mode styles #128
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: Tests | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
test-neko-legacy: | |
strategy: | |
matrix: | |
haxe-version: [4.1.5] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: krdlab/setup-haxe@v1 | |
with: | |
haxe-version: ${{ matrix.haxe-version }} | |
- name: Set up Haxelib dependencies | |
run: | | |
haxelib install utest --quiet | |
haxelib install lime 7.8.0 --quiet | |
haxelib install openfl 8.9.7 --quiet | |
haxelib install actuate --quiet | |
haxelib install markdown-openfl-textfield --quiet | |
haxelib install feathersui --quiet | |
haxelib git moonshine-openfl-language-client https://github.com/Moonshine-IDE/moonshine-openfl-language-client.git --quiet | |
haxelib dev moonshine-feathersui-text-editor $GITHUB_WORKSPACE | |
- name: Run Tests | |
working-directory: test | |
run: haxelib run openfl test neko | |
test-neko: | |
strategy: | |
matrix: | |
haxe-version: [4.2.2] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: krdlab/setup-haxe@v1 | |
with: | |
haxe-version: ${{ matrix.haxe-version }} | |
- name: Set up Haxelib dependencies | |
run: | | |
haxelib install utest --quiet | |
haxelib install lime 7.9.0 --quiet | |
haxelib install openfl 9.1.0 --quiet | |
haxelib install actuate --quiet | |
haxelib install markdown-openfl-textfield --quiet | |
haxelib install feathersui --quiet | |
haxelib git moonshine-openfl-language-client https://github.com/Moonshine-IDE/moonshine-openfl-language-client.git --quiet | |
haxelib dev moonshine-feathersui-text-editor $GITHUB_WORKSPACE | |
- name: Run Tests | |
working-directory: test | |
run: haxelib run openfl test neko | |
test-air: | |
strategy: | |
matrix: | |
haxe-version: [4.2.2] | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: joshtynjala/setup-adobe-air-action@v2 | |
with: | |
air-version: "33.1" | |
accept-license: true | |
- uses: krdlab/setup-haxe@v1 | |
with: | |
haxe-version: ${{ matrix.haxe-version }} | |
- name: Set up Haxelib dependencies | |
run: | | |
haxelib install utest --quiet | |
haxelib install lime 7.9.0 --quiet | |
haxelib install openfl 9.1.0 --quiet | |
haxelib install actuate --quiet | |
haxelib install markdown-openfl-textfield --quiet | |
haxelib install feathersui --quiet | |
haxelib git moonshine-openfl-language-client https://github.com/Moonshine-IDE/moonshine-openfl-language-client.git --quiet | |
haxelib dev moonshine-feathersui-text-editor ${{ github.workspace }} | |
haxelib run lime config AIR_SDK ${{ env.AIR_HOME }} | |
- name: Run Tests | |
working-directory: test | |
run: haxelib run openfl test air |