Fix test suite #76
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: | |
branches: | |
- main | |
- master | |
# This enables the Run Workflow button on the Actions tab. | |
workflow_dispatch: | |
jobs: | |
build-and-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout pacman-catalog | |
uses: actions/checkout@v4 | |
- name: Install dylan-tool | |
uses: dylan-lang/install-dylan-tool@v3 | |
- name: Build pacman-catalog-test-suite | |
run: | | |
export DYLAN_CATALOG=. | |
dylan update | |
dylan build -a | |
- name: Run pacman-catalog-test-suite | |
run: | | |
DYLAN_CATALOG=. _build/bin/pacman-catalog-test-suite |