Update FUNDING.yml #20
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Run Tests" | |
on: | |
push: | |
paths-ignore: | |
- '*.gif' | |
- '*.png' | |
- '*.yml' | |
- '*.md' | |
- 'LICENSE' | |
pull_request: | |
paths-ignore: | |
- '*.gif' | |
- '*.png' | |
- '*.yml' | |
- '*.md' | |
- 'LICENSE' | |
defaults: | |
run: | |
shell: bash -l {0} | |
jobs: | |
build: | |
name: "Check" | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Cancel similar actions in progress" | |
uses: styfle/[email protected] | |
with: | |
access_token: ${{ github.token }} | |
- name: "Checkout" | |
uses: actions/checkout@main | |
with: | |
submodules: recursive | |
- name: "Setup Arturo" | |
run: | | |
docker pull arturolang/arturo | |
# - name: Run Tests | |
# run: | | |
# docker run -i -v $(pwd):/home arturolang/arturo tests/test1.art |