Skip to content

Merge pull request #51 from kevinresol/js-readable #29

Merge pull request #51 from kevinresol/js-readable

Merge pull request #51 from kevinresol/js-readable #29

Workflow file for this run

name: CI
on:
push:
pull_request:
branches: [master, api2]
jobs:
test:
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.haxe-version == 'nightly' }}
strategy:
fail-fast: false
matrix:
haxe-version:
- stable
- nightly
target:
- interp
- js
- node
- neko
- php
- cpp
# - lua
- python
- jvm
steps:
- name: Check out repo
uses: actions/checkout@v6
- name: Cache Haxe
uses: actions/cache@v6
with:
path: ~/haxe
key: haxe
- name: Install Lix
uses: lix-pm/setup-lix@master
- name: Install Haxe
run: lix install haxe ${{ matrix.haxe-version }}
- name: Install Haxe Libraries
run: lix download
- name: Run Test
run: lix run travix ${{ matrix.target }} ${{ matrix.flags }}
release:
runs-on: ubuntu-latest
needs: test
if: startsWith(github.ref, 'refs/tags/') # consider using the "release" event. see: https://docs.github.com/en/actions/reference/events-that-trigger-workflows#release
steps:
- name: Check out repo
uses: actions/checkout@v6
- name: Cache Haxe
uses: actions/cache@v6
with:
path: ~/haxe
key: haxe
- name: Install Lix
uses: lix-pm/setup-lix@master
- name: Install Haxe
run: lix install haxe stable
- name: Install Haxe Libraries
run: lix download
- name: Release to Haxelib
run: lix run travix release
env:
HAXELIB_AUTH: ${{ secrets.HAXELIB_AUTH }}