-
Notifications
You must be signed in to change notification settings - Fork 1
33 lines (26 loc) · 783 Bytes
/
test.yml
File metadata and controls
33 lines (26 loc) · 783 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
name: "Testing ArkScript"
on:
push:
branches: [ master ]
pull_request:
jobs:
build:
runs-on: ${{ matrix.os }}
name: "${{ matrix.os }}, ArkScript ${{ matrix.version }}, stdlib update: ${{ matrix.stdlib_update }}"
strategy:
fail-fast: false
matrix:
os: [ubuntu-24.04, windows-latest, macos-14]
version: [latest, v4.0.0, v4.0.0-18]
stdlib_update: [yes, no]
steps:
- uses: actions/checkout@v5
- name: Setup ArkScript
uses: ArkScript-lang/setup-arkscript@master
with:
os: ${{ matrix.os }}
version: ${{ matrix.version }}
stdlib_update: ${{ matrix.stdlib_update }}
- name: Run code
shell: bash
run: arkscript --eval '(print "hello world!")'