Skip to content

Specify numpy version to be older than 2 #8

Specify numpy version to be older than 2

Specify numpy version to be older than 2 #8

Workflow file for this run

---
name: test
# yamllint disable-line rule:truthy
on:
push:
branches: [master]
pull_request:
permissions:
contents: read
jobs:
test_linux:
name: "test on linux"
runs-on: ubuntu-latest
strategy:
matrix:
python_version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/[email protected]
- uses: actions/setup-python@v5
with:
python-version: "${{ matrix.python_version }}"
cache: "pip"
- run: |
test $(script/run --version) = $(cat wyoming_openwakeword/VERSION)
- run: script/setup --dev
- run: script/lint
- run: script/test