Skip to content

build: ignore npm package folder #623

build: ignore npm package folder

build: ignore npm package folder #623

Workflow file for this run

name: Build Python package
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9, "3.10"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- run: |
sudo apt update
sudo apt install swig
pip install -r requirements_dev.txt
- run: make python
- run: make py-local-install
- run: make py-test