forked from hkc/mastoposter
17 lines
371 B
YAML
17 lines
371 B
YAML
on: [push]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v3
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: 3.x
|
|
- name: Install dependencies
|
|
run: pip install .[test]
|
|
- name: Test with pytest
|
|
run: pytest -vv --color=yes
|