This commit is contained in:
Michael Zhang 2024-09-06 19:31:15 +02:00
parent 51ab771699
commit 01c8af250a
3 changed files with 12 additions and 2 deletions

View file

@ -16,6 +16,11 @@ jobs:
with:
ghc-version: 9.8.2
cabal-version: 3.10.3.0
- run: mkdir -p installdir
- name: Install Agda
run: cabal install Agda
-
run: cabal install --installdir installdir Agda
- run: tar cvf agda.tar.gz -C "$(dirname $(dirname $(realpath installdir/agda)))" .
- uses: actions/upload-artifact@v4
with:
name: agda.tar.gz
path: agda.tar.gz

2
Dockerfile Normal file
View file

@ -0,0 +1,2 @@
FROM ubuntu:latest

3
docker-compose.yml Normal file
View file

@ -0,0 +1,3 @@
services:
dev:
build: .