Skip to content
This repository has been archived by the owner on Jan 26, 2024. It is now read-only.

Bump v0.1.10

Bump v0.1.10 #47

Workflow file for this run

name: tests
on:
push:
branches:
- "main"
paths-ignore:
- '**/README.md'
pull_request:
branches:
- "main"
paths-ignore:
- '**/README.md'
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9]
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Check Python version
run: python --version
- name: Install
run: |
python -m pip install --upgrade pip
make install-dev
- name: Test
run: make test