Skip to content
This repository was archived by the owner on Nov 12, 2025. It is now read-only.

Commit e2690e3

Browse files
authored
Add basic workflow
1 parent c362585 commit e2690e3

1 file changed

Lines changed: 29 additions & 0 deletions

File tree

.github/workflows/blank.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: CI
2+
3+
on:
4+
# Triggers the workflow on push or pull request events but only for the master branch
5+
push:
6+
branches: [ master ]
7+
pull_request:
8+
branches: [ master ]
9+
10+
# Allows you to run this workflow manually from the Actions tab
11+
workflow_dispatch:
12+
13+
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
14+
jobs:
15+
build:
16+
runs-on: windows-latest
17+
18+
# Steps represent a sequence of tasks that will be executed as part of the job
19+
steps:
20+
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
21+
- uses: actions/checkout@v2
22+
23+
- name: Setup Haxe environment
24+
uses: krdlab/setup-haxe@v1.1.5
25+
with:
26+
haxe-version: 4.2.0
27+
28+
- name: Run tests
29+
run: haxe test.hxml

0 commit comments

Comments
 (0)