Skip to content

fixed typo (geez...) #64

fixed typo (geez...)

fixed typo (geez...) #64

Workflow file for this run

name: Bundle Arturo app
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:
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
version: 1.0.0
- name: Run tests
run: |
./testbundle
shell: bash