Bump actions/checkout from 3 to 4 #26
Workflow file for this run
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: build-and-test | |
on: | |
push: | |
# all branches | |
pull_request: | |
branches: | |
- main | |
- master | |
# This enables the Run Workflow button on the Actions tab. | |
workflow_dispatch: | |
jobs: | |
build-and-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dylan-lang/install-dylan-tool@v2 | |
- name: Build dylan-brainfuck-tests | |
run: | | |
dylan update | |
dylan build brainfuck-test-suite | |
- name: Run dylan-brainfuck-tests | |
run: _build/bin/brainfuck-test-suite |