Skip to content

Commit

Permalink
Remove deprecated set-env command in github action
Browse files Browse the repository at this point in the history
  • Loading branch information
cmuench committed Feb 14, 2021
1 parent 979260b commit b7ac77d
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,6 @@ jobs:
steps:
- uses: actions/checkout@v2

- name: Set env
run: echo ::set-env name=workspace::$GITHUB_WORKSPACE

- name: Dump GitHub context
env:
GITHUB_CONTEXT: ${{ toJson(env) }}
Expand Down Expand Up @@ -101,7 +98,7 @@ jobs:

- name: Run PHPUnit (Developer Mode)
env:
N98_MAGERUN2_TEST_MAGENTO_ROOT: ${{ env.workspace }}/magento
N98_MAGERUN2_TEST_MAGENTO_ROOT: ${{ github.workspace }}/magento
run: vendor/bin/phpunit --process-isolation --teamcity

- name: Activate Magento Production Mode
Expand All @@ -110,5 +107,5 @@ jobs:

- name: Run PHPUnit (Production Mode)
env:
N98_MAGERUN2_TEST_MAGENTO_ROOT: ${{ env.workspace }}/magento
N98_MAGERUN2_TEST_MAGENTO_ROOT: ${{ github.workspace }}/magento
run: vendor/bin/phpunit --process-isolation --teamcity

0 comments on commit b7ac77d

Please sign in to comment.