-
-
Notifications
You must be signed in to change notification settings - Fork 8
46 lines (41 loc) · 895 Bytes
/
test.yml
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: "Build & Test"
on:
push:
branches:
- '**'
tags-ignore:
- '**'
pull_request:
paths-ignore:
- 'docs/*'
- '*.yml'
- '*.md'
- 'LICENSE'
defaults:
run:
shell: bash -l {0}
jobs:
build:
name: "Build & Test"
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
version:
- full
steps:
- name: "Cancel similar actions in progress"
uses: styfle/cancel-workflow-action@0.6.0
with:
access_token: ${{ github.token }}
- name: "Setup Arturo"
uses: arturo-lang/arturo-action@main
- name: "Checkout"
uses: actions/checkout@main
with:
submodules: recursive
- name: Run unit tests
run: |
echo "${{ github.workspace }}/bin" >> $GITHUB_PATH
arturo tests/test1.art