Skip to content

Remove some typos, update python verion. #49

Remove some typos, update python verion.

Remove some typos, update python verion. #49

Workflow file for this run

name: Build
on: [push]
jobs:
build:
name: Build for (${{ matrix.python-version }}, ${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: ['ubuntu-latest', 'macos-latest', 'windows-latest']
python-version: ['3.8', '3.9', '3.10']
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Python info
run: |
which python
python --version
- name: Install dependencies
run: |
python -m pip install --upgrade pip
- name: Build
run: |
pip install -e .
- name: Show pip list
run: |
pip list
- name: Test
run: |
pip install pytest
pytest