Skip to content

Update unittest.yml #38

Update unittest.yml

Update unittest.yml #38

Workflow file for this run

name: Unit Test
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: [3.7, 3.8, 3.9, "3.10", "3.11"]
steps:
- uses: actions/checkout@v1
- name: Set Up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies and package
run: |
python -m pip install --upgrade pip
python -m pip install .[test]
- name: Type Check
run: |
mypy iobes
- name: Unit Test
run: |
pytest