Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
swetha1654 committed Dec 11, 2024
1 parent 56b3be9 commit 0c43d2a
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,19 @@ jobs:
uses: actions/setup-python@v2
with:
python-version: '3.x'

- name: Set env variable
run: |
echo 'ENABLE_ALLURE=false' >> $GITHUB_ENV
- name: Get variable
run: |
echo "${{ env.ENABLE_ALLURE }}"
if ["$env.ENABLE_ALLURE" == 'true']; then
echo "abc"
else
echo "def"
fi
- name: Install tox
run: |
Expand Down

0 comments on commit 0c43d2a

Please sign in to comment.