mirror of
https://github.com/PaiGramTeam/PamGram.git
synced 2024-11-25 23:49:11 +00:00
26 lines
519 B
YAML
26 lines
519 B
YAML
|
name: Test
|
||
|
|
||
|
on:
|
||
|
pull_request:
|
||
|
branches:
|
||
|
- 'test'
|
||
|
- 'test/**'
|
||
|
- 'wiki/**'
|
||
|
|
||
|
jobs:
|
||
|
pytest:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
- name: Set up Python 3.10
|
||
|
uses: actions/setup-python@v3
|
||
|
with:
|
||
|
python-version: "3.10"
|
||
|
- name: Install dependencies
|
||
|
run: |
|
||
|
pip install --upgrade poetry
|
||
|
poetry install
|
||
|
poetry install --extras test
|
||
|
- name: Test with pytest
|
||
|
run: |
|
||
|
pytest
|