Skip to content

Commit

Permalink
Initial Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Joalor64GH authored Mar 15, 2024
1 parent e206fb9 commit 98d9417
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 2 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Build
on: push
jobs:
Job:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@main

- name: Setup Haxe
uses: krdlab/setup-haxe@master
with:
haxe-version: latest

- name: Compiling
run: haxe build.hxml
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# Haxe-Template
A template for projects made with Haxe.
# Haxe Template
A template for projects made with Haxe.
4 changes: 4 additions & 0 deletions build.hxml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
-cp source
-D analyzer-optimize
-main Main
--interp
5 changes: 5 additions & 0 deletions source/Main.hx
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
class Main {
static function main() {
trace("Hello, world!");
}
}

0 comments on commit 98d9417

Please sign in to comment.