From 08698d0573a295893c33baabbd569e4c3c787506 Mon Sep 17 00:00:00 2001 From: Matthew Butterick Date: Wed, 2 Dec 2020 14:49:22 -0800 Subject: [PATCH] Update ci.yml --- .github/workflows/ci.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 787b9bc..03fb856 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,15 +38,23 @@ jobs: - name: Install package and its dependencies run: raco pkg install --deps search-auto https://github.com/mbutterick/br-parser-tools.git?path=br-parser-tools-lib + - name: install brag run: raco pkg install --deps search-auto https://github.com/mbutterick/brag.git?path=brag + - name: install br-macro run: raco pkg install --deps search-auto https://github.com/mbutterick/beautiful-racket.git?path=beautiful-racket-macro + - name: install br lib run: raco pkg install --deps search-auto https://github.com/mbutterick/beautiful-racket.git?path=beautiful-racket-lib + - name: install br demo run: raco pkg install --deps search-auto https://github.com/mbutterick/beautiful-racket.git?path=beautiful-racket-demo + - name: install br run: raco pkg install --deps search-auto https://github.com/mbutterick/beautiful-racket.git?path=beautiful-racket - - name: Run the tests + - name: Run the brm tests run: xvfb-run raco test -p beautiful-racket-macro + - name: Run the lib tests run: xvfb-run raco test -p beautiful-racket-lib + - name: Run the demo tests run: xvfb-run raco test -p beautiful-racket-demo + - name: Run the br tests run: xvfb-run raco test -p beautiful-racket