Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
4kimov committed Sep 20, 2024
1 parent a7b0ee1 commit 5c1132f
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Haxe Test

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Setup Haxe
uses: krdlab/setup-haxe@v1
with:
haxe-version: 4.3.6

- name: Install dependencies
run: |
haxelib install utest
haxelib install all
- name: Compile tests
run: haxe test.hxml

- name: Run tests
run: node bin/test.js

4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
bin
dist
doc
sqids.zip

0 comments on commit 5c1132f

Please sign in to comment.