package: use latest versions of testworks and sphinx-extensions #30
Workflow file for this run
This file contains hidden or 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
| # For now this just does a clean build and start/stop the server because the test suites | |
| # hang. https://github.com/dylan-lang/http/issues/90 | |
| name: tests | |
| 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: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: dylan-lang/install-opendylan@v3 | |
| - name: make install | |
| env: | |
| DYLAN: dylan-root | |
| run: make install | |
| - name: Run http-server --help | |
| env: | |
| DYLAN: dylan-root | |
| run: | | |
| find . -type d -depth 2 # debug | |
| dylan-root/bin/http-server --help |