Skip to content

Update test.yml

Update test.yml #5

Workflow file for this run

jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: [3.8]
steps:
- uses: actions/checkout@v1
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Installation
run:
|
python -m pip install --upgrade pip
pip install numpy==1.23.1
pip install -e .[test]
- name: Test
run: pytest
name: cellprofiler-core
on: [push]