From 039984f1dd876434238873a99af9cf7afc2258bb Mon Sep 17 00:00:00 2001 From: Scott Gigante Date: Fri, 5 Mar 2021 14:25:37 -0500 Subject: [PATCH] install docopt manually to address https://github.com/lorenzwalthert/precommit/issues/88 --- .github/workflows/pre-commit.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml index 84a1226c0..c1083a3b0 100644 --- a/.github/workflows/pre-commit.yml +++ b/.github/workflows/pre-commit.yml @@ -24,9 +24,8 @@ jobs: - name: Set up R id: setup-r - uses: r-lib/actions/setup-r@v1 - with: - r-version: "release" + run: | + R -e "install.packages('docopt')" - uses: actions/cache@v2 with: