Skip to content

Update numpy requirement from ~=1.24.4 to ~=2.1.1 #69

Update numpy requirement from ~=1.24.4 to ~=2.1.1

Update numpy requirement from ~=1.24.4 to ~=2.1.1 #69

Workflow file for this run

name: unit tests
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
inputs:
manual:
description: "Trigger the workflow manually"
required: false
permissions:
contents: read
jobs:
build:
name: unit tests
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10"]
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
make deps
- name: Run unit tests
run: |
make test