Skip to content

feat: first version. Involved LastSeconds, modified to pypi #11

feat: first version. Involved LastSeconds, modified to pypi

feat: first version. Involved LastSeconds, modified to pypi #11

Workflow file for this run

name: Pip
on:
workflow_dispatch:
pull_request:
push:
branches:
- master
release:
types:
- published
jobs:
Testing_Local:
runs-on: ${{ matrix.platform }}
strategy:
fail-fast: false
matrix:
platform: [windows-latest, macos-latest, ubuntu-latest]
python-version: ["3.8", "3.11"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies and package
run: |
python -m pip install pytest
pip install --verbose .
- name: Run tests
run: python -m pytest