MibooGram/.github/workflows/test.yml
2022-09-15 10:22:40 +08:00

45 lines
1.0 KiB
YAML

name: test
on:
push:
branches:
- main
paths:
- 'tests/**'
pull_request:
types: [ opened, synchronize ]
paths:
- 'modules/apihelper/**'
- 'modules/wiki/**'
- 'tests/**'
schedule:
- cron: '0 4 * * 3'
jobs:
pytest:
name: pytest
runs-on: ${{matrix.os}}
continue-on-error: ${{ matrix.experimental }}
strategy:
matrix:
python-version: [ '3.10' ]
os: [ ubuntu-latest, windows-latest ]
experimental: [ false ]
fail-fast: False
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 poetry
run: |
pip install --upgrade poetry
poetry config virtualenvs.create false
- name: Install dependencies
run: |
poetry install
poetry install --extras test
- name: Test with pytest
run: |
python -m pytest