Skip to content

set version to 0.8.1 #221

set version to 0.8.1

set version to 0.8.1 #221

Workflow file for this run

name: run all tests
on: [push, pull_request]
jobs:
test:
strategy:
fail-fast: false
matrix:
python-version: [3.8, 3.9, 3.10, 3.11]
os: [macOs-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
name: run tests
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: install requirements
run: |
pip install .
pip install meshpy
- name: test
run: |
python testall.py