Skip to content

Commit

Permalink
windows env var fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Remi-Gau committed Aug 17, 2023
1 parent f086208 commit e127f3e
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/run_tests_matlab.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,15 @@ jobs:
git clone https://github.com/MOxUnit/MOxUnit.git --depth 1
git clone https://github.com/MOcov/MOcov.git --depth 1
- name: set environment variable
if: matrix.test == 'slow'
- name: set environment variable unix
if: matrix.test == 'slow' && matrix.os == 'ubuntu-latest'
run: export SLOW=true

- name: set environment variable windows
if: matrix.test == 'slow' && matrix.os == 'windows-latest'
run: |
setx SLOW "true"
- name: Run commands
uses: matlab-actions/[email protected]
with:
Expand Down

0 comments on commit e127f3e

Please sign in to comment.