Skip to content

Rename

Rename #105

Workflow file for this run

name: Python package
on: [push]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: pip # caching pip dependencies
- run: pip install -r requirements_dev.txt
- name: Install nxmx
run: pip install .
- name: Run pytest
run: pytest -vs
post_build:
name: CI Successful
needs: [build]
runs-on: ubuntu-latest
steps:
- name: Nothing
run: 'true'