Skip to content

Run Tests for Kobbe (Ubuntu) (py3.11 only) #1

Run Tests for Kobbe (Ubuntu) (py3.11 only)

Run Tests for Kobbe (Ubuntu) (py3.11 only) #1

name: Run Tests for Kobbe (Ubuntu) (py3.11 only)
on:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.11",]
steps:
- name: Checkout repository
uses: actions/checkout@v3 # Use the latest version of actions/checkout
- name: Set up Python
uses: actions/setup-python@v4 # Use the latest version of actions/setup-python
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .
pip install -e '.[dev]' # This installs the optional dev dependencies, including pytest
- name: Run tests
run: |
pytest
env:
CI: true