Merge pull request #340 from latchbio/ayush/login-fixies #2777
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |