Skip to content

doc: mark toctree :hidden:, remove search/modindex #8

doc: mark toctree :hidden:, remove search/modindex

doc: mark toctree :hidden:, remove search/modindex #8

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 base64-test-suite
- name: Run tests
run: _build/bin/base64-test-suite --progress none --report surefire > _build/TEST-base64.xml
- name: Publish Test Report
if: success() || failure()
uses: mikepenz/action-junit-report@v4
with:
report_paths: '**/_build/TEST-*.xml'