[pre-commit.ci] pre-commit autoupdate (#68) #381
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: "Build and Test" | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: [ "main" ] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build-test: | |
strategy: | |
fail-fast: false | |
matrix: | |
platform: [ ubuntu-latest, windows-latest, macos-latest ] | |
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12" ] | |
runs-on: ${{ matrix.platform }} | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install the package with pip | |
run: python -m pip install .[test] | |
- name: Run pytest | |
run: python -m pytest | |
- name: Run from cli | |
run: python -m hvps --version | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: "npm" | |
cache-dependency-path: bindings/nodejs/hvps/package-lock.json | |
- name: Install nodejs bindings | |
run: | | |
cd bindings/nodejs/hvps | |
npm --version | |
node --version | |
npm install | |
node cli.js --version | |
- name: Check nodejs package version is in sync with python | |
run: | | |
cd bindings/nodejs/hvps/ | |
node cli.js --version | grep $(python -m hvps --version) |