Skip to content

Commit

Permalink
refactor(workflows): naming
Browse files Browse the repository at this point in the history
  • Loading branch information
Curve committed Mar 16, 2024
1 parent d0bbe31 commit cfdb11a
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,6 @@ jobs:
install-vtk: false
container: ${{ matrix.os }}

- name: 🐍 Build and check Python Module (Linux)
if: ${{ matrix.os != 'windows-latest' }}
run: |
python3 -m venv venv
./venv/bin/pip install .
./venv/bin/python -c "import viennaps2d"
- name: 🐍 Build and check Python Module (Windows)
if: ${{ matrix.os == 'windows-latest' }}
run: |
Expand All @@ -43,6 +36,13 @@ jobs:
pip install .
python3 -c "import viennaps2d"
- name: 🐍 Build and check Python Module (Other)
if: ${{ matrix.os != 'windows-latest' }}
run: |
python3 -m venv venv
./venv/bin/pip install .
./venv/bin/python -c "import viennaps2d"
- name: 📦 Upload Artifact
if: ${{ matrix.config == 'Release' }}
uses: actions/upload-artifact@v3
Expand Down

0 comments on commit cfdb11a

Please sign in to comment.