kzccm1d4if10m2xaz1wqy3xar821pp1r-my-site-anaphoric-git.test.suzanne.soy-0.0.1

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit 763a583d86386d556e5dfd4b311bdef4f1a7ff20
parent a795e9e6012c9896d963ad302b3bfa772ab2bc13
Author: Suzanne Soy <jsmaniac.github@suzanne.soy>
Date:   Wed, 28 Jul 2021 14:43:27 +0100

Use $GITHUB_WORKSPACE not $TRAVIS_BUILD_DIR

Diffstat:
M.github/workflows/ci.yml | 6++----
1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml @@ -1,5 +1,3 @@ -# This is a basic workflow to help you get started with Actions - name: CI on: @@ -85,9 +83,9 @@ jobs: - name: Test the Racket package run: raco test -r -p "$(basename "$GITHUB_WORKSPACE")" - name: Check the dependencies of the Racket package - run: if $COV; then raco setup --check-pkg-deps --no-zo --no-launcher --no-install --no-post-install --no-docs --pkgs "$(basename "$TRAVIS_BUILD_DIR")"; fi + run: if $COV; then raco setup --check-pkg-deps --no-zo --no-launcher --no-install --no-post-install --no-docs --pkgs "$(basename "$GITHUB_WORKSPACE")"; fi - name: Check documentation coverage - run: if $COV; then raco doc-coverage "$(basename "$TRAVIS_BUILD_DIR")"; fi + run: if $COV; then raco doc-coverage "$(basename "$GITHUB_WORKSPACE")"; fi - name: Check code coverage run: if $COV; then raco cover -s main -s test -s doc -f codecov -f html -d ~/coverage . || true; fi # TODO: add an option to cover to run the "outer" module too, not just the submodules.