Skip to content

Commit

Permalink
run .CI/installLibraries.mos only on Linux as is slow on Windows (#93)
Browse files Browse the repository at this point in the history
  • Loading branch information
adrpo authored Mar 28, 2024
1 parent d72d959 commit cf7cf34
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,9 @@ jobs:
- name: Check if .CI/installLibraries.mos works
shell: bash
run: |
omc .CI/installLibraries.mos
if [ "$RUNNER_OS" == "Linux" ]; then
omc .CI/installLibraries.mos
fi
- name: Setup Python3
uses: actions/setup-python@v5
Expand Down

0 comments on commit cf7cf34

Please sign in to comment.