Merge pull request #24 from fraya/master #13
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 | |
paths-ignore: | |
- 'documentation/**' | |
pull_request: | |
branches: | |
- main | |
- master | |
paths-ignore: | |
- 'documentation/**' | |
# 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 | |
- name: Install dylan-tool | |
uses: dylan-lang/install-dylan-tool@v2 | |
- name: Update packages | |
run: dylan update | |
- name: Build logging-test-suite | |
run: dylan build logging-test-suite | |
- name: Build testworks-run | |
run: dylan build testworks-run | |
- name: Run logging-test-suite | |
run: | | |
_build/bin/testworks-run --load liblogging-test-suite.so | |