Skip to content

ci(ci): Update CI for deployment to production #24

ci(ci): Update CI for deployment to production

ci(ci): Update CI for deployment to production #24

Workflow file for this run

---
name: CI
on: [pull_request]
jobs:
test:
name: Unit tests
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: set up Python
uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: install python dependencies
run: |
pip install -r dev-requirements.txt
pip install .
- name: run tests
run: python -m pytest tests/