Skip to content

fix: small bugs

fix: small bugs #3486

Workflow file for this run

name: Test
on: push
jobs:
macos:
name: Test
strategy:
fail-fast: false
matrix:
python: ["3.8", "3.9", "3.10", "3.11"]
platform: ["macos-12", "ubuntu-22.04"]
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
- name: Install dev
run: |
pip install -r dev-requirements.txt
- name: Install latch
run: |
pip install .
- name: Test
env:
TEST_TOKEN: ${{ secrets.TEST_TOKEN }}
run: |
pytest -s