mirror of
https://github.com/Smaug123/agdaproofs
synced 2025-10-13 15:48:39 +00:00
15 lines
466 B
YAML
15 lines
466 B
YAML
language: minimal
|
|
|
|
services:
|
|
- docker
|
|
|
|
before_install:
|
|
- docker pull smaug451/agda:basic
|
|
|
|
git:
|
|
quiet: true
|
|
|
|
script:
|
|
- export BRANCH=$(if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then echo $TRAVIS_BRANCH; else echo $TRAVIS_PULL_REQUEST_BRANCH; fi)
|
|
- docker run smaug451/agda:basic /bin/sh -c "cd ~/; git clone https://github.com/Smaug123/agdaproofs.git; cd agdaproofs; git fetch; git checkout $BRANCH; agda Everything/Safe.agda && agda Everything/WithK.agda"
|