From d100841bd9ccc8dbf4dc87947fde0b79c2bc7bea Mon Sep 17 00:00:00 2001 From: Orsiris de Jong Date: Sat, 10 Jun 2023 12:59:42 +0200 Subject: [PATCH] Try to fix github env variables --- .github/workflows/linux.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index c225d1a..4a2d1ce 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -15,9 +15,12 @@ jobs: run: | sudo apt-get install inotify-tools acl - name: Execute tests and generate coverage report + env: + RUNNING_ON_GITHUB_ACTIONS=true + SSH_PORT=22 run: | - export RUNNING_ON_GITHUB_ACTIONS=true - export SSH_PORT=22 + echo "Running on github actions: ${RUNNING_ON_GITHUB_ACTIONS}" + echo "Running on ssh port ${SSH_PORT}" sudo bash ./dev/tests/run_tests.sh - name: Upload Coverage to Codecov uses: codecov/codecov-action@v1