From b4ef113712f4713ee5cd0f3a0195d21588cc6510 Mon Sep 17 00:00:00 2001 From: Fanael Linithien Date: Fri, 18 Oct 2019 15:06:07 +0200 Subject: [PATCH] Move the test script to root and make sure it's executable --- .github/workflows/test.yml | 2 +- .github/workflows/test.sh => run-tests.sh | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename .github/workflows/test.sh => run-tests.sh (100%) mode change 100644 => 100755 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a78c6ec..d963a1e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -24,4 +24,4 @@ jobs: version: ${{ matrix.emacs_version }} - uses: actions/checkout@v1 - name: Run tests - run: './.github/workflows/test.sh' + run: './run-tests.sh' diff --git a/.github/workflows/test.sh b/run-tests.sh old mode 100644 new mode 100755 similarity index 100% rename from .github/workflows/test.sh rename to run-tests.sh