Skip to content

update publish action to format files in order to avoid pre-commit er… #215

update publish action to format files in order to avoid pre-commit er…

update publish action to format files in order to avoid pre-commit er… #215

Workflow file for this run

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" ]
runs-on: ${{ matrix.platform }}
timeout-minutes: 20
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
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@v3
with:
node-version: 18
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)