Skip to content

Refactoring Lightning API #225

Refactoring Lightning API

Refactoring Lightning API #225

Workflow file for this run

name: smoke test
on:
push:
branches:
- main
pull_request:
jobs:
test:
name: ${{ matrix.platform }} (${{ matrix.python-version }})
runs-on: ${{ matrix.platform }}
strategy:
fail-fast: false
matrix:
python-version: ["3.9"]
platform: [ubuntu-latest]
steps:
- name: Code checkout
uses: actions/checkout@v3
- name: 🐍 Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache-dependency-path: "pyproject.toml"
cache: "pip"
- name: Install Dependencies
run: |
python -m pip install -U pip
python -m pip install .[test]
- name: 🧪 Run Tests
run: pytest --color=yes tests/smoke_test.py