commit 89c6e9dc0792b9efc410bcc7b5aaafe4e46f3894 Author: Michael Zhang Date: Thu Sep 5 22:36:47 2024 +0200 initial diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..e5ace72 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,21 @@ +name: Build Agda + +on: + push: + branches: [main] + +jobs: + build: + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [ubuntu-latest, macOS-latest, windows-latest] + agda-version: [2.6.2, 2.7.0] + + steps: + - uses: haskell-actions/setup@v2 + with: + ghc-version: 9.8.2 + cabal-version: 3.10.3.0 + - name: Install Agda + run: cabal install Agda \ No newline at end of file diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ea8c4bf --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/target