Skip to content

Update test.yml

Update test.yml #4

Workflow file for this run

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 # Linux - amd64
- macos-12 # macOS - amd64
- macos-latest # macOS - arm64/M1
- windows-latest # Windows - amd64
steps:
- name: "Cancel similar actions in progress"
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}
- name: "Setup Arturo"
uses: arturo-lang/arturo-action@main
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: "Checkout"
uses: actions/checkout@main
with:
submodules: recursive
- name: Run unit tests
run: |
cd arturo
arturo -v
arturo tests/tests.art