mirror of
https://github.com/senju1337/senju.git
synced 2025-12-24 07:39:29 +00:00
29 lines
608 B
YAML
29 lines
608 B
YAML
name: Tests
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- "**"
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
python-version: ["3.11"]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Set up Python ${{ matrix.python-version }}
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
- name: Install
|
|
run: |
|
|
pip install -e .
|
|
|
|
- name: Run tests
|
|
run: |
|
|
pytest
|