Skip to content

Commit

Permalink
Don't use bash, but fix path syntax for windows
Browse files Browse the repository at this point in the history
  • Loading branch information
mstimberg committed Sep 8, 2023
1 parent f43dc5d commit 2e57656
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions .github/workflows/test_latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,6 @@ jobs:
float_dtype_32: [false, true]
python-version: ["${{ needs.get_python_versions.outputs.max-python }}"]

defaults:
run:
shell: bash

steps:
- name: Checkout Repository
uses: actions/checkout@v3
Expand Down Expand Up @@ -69,8 +65,8 @@ jobs:
run: ${{ steps.python.outputs.python-path }} -m pip install --pre -i https://pypi.anaconda.org/scientific-python-nightly-wheels/simple --extra-index-url https://pypi.org/simple .
- name: Run Tests
run: |
cd $GITHUB_WORKSPACE/.. # move out of the workspace to avoid direct import
${{ steps.python.outputs.python-path }} -Wd $GITHUB_WORKSPACE/dev/continuous-integration/run_test_suite.py
cd ${{ github.workspace }} /.. # move out of the workspace to avoid direct import
${{ steps.python.outputs.python-path }} -Wd ${{ github.workspace }}/dev/continuous-integration/run_test_suite.py
env:
DEPRECATION_ERROR: true
AGENT_OS: ${{runner.os}}
Expand Down

0 comments on commit 2e57656

Please sign in to comment.