doc: mark toctree :hidden:, remove search/modindex #8
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: | |
# 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' |