doc: fix build and linkcheck errors #206
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: libraries-test-suite | |
on: | |
push: | |
paths-ignore: ['documentation/**', '**.rst', '**.md'] | |
pull_request: | |
branches: | |
- master | |
paths-ignore: ['documentation/**', '**.rst', '**.md'] | |
# This enables the Run Workflow button on the Actions tab. | |
workflow_dispatch: | |
jobs: | |
libraries-test-suite: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macos-latest, ubuntu-latest] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
path: od | |
submodules: recursive | |
- uses: dylan-lang/install-opendylan@v3 | |
with: | |
version: 2023.1 | |
tag: v2023.1.0 | |
- name: Build libraries-test-suite-app | |
run: | | |
# We want to use the registry in the sources directory... | |
cd od/sources | |
dylan-compiler -build -jobs 3 libraries-test-suite-app | |
- name: Run libraries-test-suite-app | |
run: | | |
od/sources/_build/bin/libraries-test-suite-app --tag=-benchmark |