Skip to content

fixed indentation issue #27

fixed indentation issue

fixed indentation issue #27

Workflow file for this run

name: Bundler
on:
push:
paths-ignore:
- 'LICENSE'
- '*.md'
branches:
- main
pull_request:
paths-ignore:
- 'LICENSE'
- '*.md'
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- {os: ubuntu-latest}
- {os: macos-12}
- {os: macos-latest}
- {os: windows-latest}
steps:
- uses: actions/checkout@v4
- uses: ./
with:
token: ${{ secrets.GITHUB_TOKEN }}
entry: tests/testbundle.art
target: testbundlex
- name: Run tests
run: |
./testbundlex
shell: bash