From f6362d25f7d1aacde29dacaf66ad07b2a1533a37 Mon Sep 17 00:00:00 2001 From: Marc Garcia Date: Tue, 3 Dec 2019 00:08:44 +0000 Subject: [PATCH] CI: Using more appropriate GitHub Actions syntax to set path --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f68080d05bea6..a36420556ae24 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,12 +15,12 @@ jobs: runs-on: ubuntu-latest steps: + - name: Setting conda path + run: echo "::add-path::${HOME}/miniconda3/bin" + - name: Checkout uses: actions/checkout@v1 - - name: Setting conda path - run: echo "::set-env name=PATH::${HOME}/miniconda3/bin:${PATH}" - - name: Looking for unwanted patterns run: ci/code_checks.sh patterns if: true