Update version 4.2.2 #52
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Windows Installation Test | |
on: [push, pull_request] | |
jobs: | |
install: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
name: Check out main repository code | |
- name: Clone dependent repository | |
run: git clone https://github.com/New-Horizons-SPM/nanonisTCP.git | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
- name: Install node_modules and build the app | |
env: | |
CI: "" | |
run: | | |
cd scanbot/App | |
npm install | |
npm run build | |
- name: Install the main application | |
run: pip install . | |
- name: Verify Installation of the main application | |
run: scanbot --version | |
- name: Complete unit tests | |
run: pytest | |