Skip to content

Bump to 0.6.3

Bump to 0.6.3 #13

Workflow file for this run

name: tspex workflow
on: [push]
jobs:
build:
name: Test
strategy:
matrix:
platform: [ ubuntu-latest, macos-latest, windows-latest ]
python-version: [ '3.6', '3.7', '3.8' ]
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout
uses: actions/[email protected]
- name: Setup Python ${{ matrix.python-version }} environment
uses: actions/[email protected]
with:
python-version: ${{ matrix.python-version }}
- name: Install wheel and pytest
run: pip install pytest pytest-cov wheel
- name: Build tspex
run: python setup.py sdist bdist_wheel
shell: bash
- name: Install tspex
run: pip install dist/*.whl
shell: bash
- name: Test
run: pytest
- name: Upload artifact
uses: actions/[email protected]
with:
name: build-artifact
path: dist