Skip to content

Address review comments from PR #1 #7

Address review comments from PR #1

Address review comments from PR #1 #7

Workflow file for this run

name: Example Usage
on: [push, pull_request]
permissions:
contents: read
jobs:
example:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v5
- name: Setup Agda
id: setup-agda
uses: agda/agda-setup-action@v1
with:
agda-version: '2.8.0'
agda-stdlib-version: '2.3'
- name: Show Agda info
run: |
echo "Agda path: ${{ steps.setup-agda.outputs.agda-path }}"
echo "Agda dir: ${{ steps.setup-agda.outputs.agda-dir }}"
agda --version
- name: Create a simple Agda file
run: |
cat > Example.agda << 'EOF'
module Example where
open import Data.Bool.Base
open import Data.Nat.Base
example : Bool
example = true
EOF
- name: Type-check Agda file
run: agda Example.agda