Improve CI for aya and tla #6
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: Aya CI | |
on: | |
push: | |
branches: [ main ] | |
paths: | |
- '.github/workflows/aya.yml' | |
- 'aya/**' | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
test-aya-examples: | |
name: Test Aya Examples | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ ubuntu-latest, macos-latest, windows-latest] | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: extractions/setup-just@v1 | |
with: | |
just-version: 1.35.0 | |
- name: Setup Aya | |
uses: aya-prover/setup-aya@latest | |
with: | |
version: 'nightly-build' | |
distribution: 'jlink' | |
build-from-source: 'false' | |
# - name: Show aya version | |
# run: aya --version | |
# - name: Show aya-lsp version | |
# run: aya-lsp --version | |
# - name: Show aya help | |
# run: aya --help | |
# - name: Show aya-lsp help | |
# run: aya-lsp --help | |
- name: Typechecking examples | |
run: | | |
cd aya | |
just test |