Advertisement
Guest User

Untitled

a guest
Dec 12th, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.51 KB | None | 0 0
  1. name: Haxe (all versions, all platforms)
  2.  
  3. on: [push]
  4.  
  5. jobs:
  6.   build:
  7.     runs-on: ${{ matrix.os }}
  8.  
  9.     strategy:
  10.       matrix:
  11.         os: [ubuntu-latest, macos-latest, windows-latest]
  12.         haxe-version: [3.4.4, 4.0.3]
  13.  
  14.     steps:
  15.     - uses: actions/checkout@v1
  16.     - uses: ianharrigan/GitHubActionsTest/.github/actions/haxe@master
  17.       with:
  18.         haxe-version: ${{ matrix.haxe-version }}
  19.  
  20.     - name: Build app
  21.       run: |
  22.        haxelib install js.hxml --always
  23.         haxe js.hxml
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement