We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29223f3 commit b997d22Copy full SHA for b997d22
.github/workflows/main.yml
@@ -82,18 +82,16 @@ jobs:
82
ironpython-build:
83
name: windows-ironpython
84
runs-on: windows-latest
85
- env:
86
- IRONPYTHONPATH: ${{ env.GITHUB_WORKSPACE }}/src
87
steps:
88
- uses: actions/checkout@v2
+ - name: Setting IronPython path
+ run: echo "::add-path::${GITHUB_WORKSPACE}/src"
89
- name: Install dependencies
90
run: |
91
choco install ironpython --version=2.7.8.1
92
ipy -X:Frames -m ensurepip
93
ipy -X:Frames -m pip install --no-deps compas roslibpy
94
ipy -X:Frames -m pip install ironpython-pytest
95
- - name: Dump GitHub workspace
96
- run: echo "$GITHUB_WORKSPACE"
97
- name: Run tests
98
99
ipy tests/ipy_test_runner.py
0 commit comments