Skip to content

Merge pull request #190 from PingqiLi/main #285

Merge pull request #190 from PingqiLi/main

Merge pull request #190 from PingqiLi/main #285

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Run ut tests
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
ut-test:
strategy:
matrix:
os: [ubuntu-latest]
python: [3.8, 3.9]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
- name: Lint with pre-commit
uses: pre-commit/action@v3.0.0
- name: Test with pytest
run: |
pytest tests/