Skip to content

Refurbish library

Refurbish library #10

Workflow file for this run

name: Build and test
on:
push:
# all branches
pull_request:
# all branches
# This enables the Run Workflow button on the Actions tab.
workflow_dispatch:
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Opendylan
uses: dylan-lang/install-opendylan@v3
- name: Download dependencies
run: dylan update
- name: Build tests
run: dylan build command-interface-test
- name: Run tests
run: _build/bin/command-interface-test --progress none --report surefire > _build/TEST-command-interface.xml
- name: Publish Test Report
if: success() || failure()
uses: mikepenz/action-junit-report@v4
with:
report_paths: '**/_build/TEST-*.xml'