mirror of
https://github.com/ArchiveBox/ArchiveBox
synced 2024-11-26 22:20:21 +00:00
25 lines
No EOL
456 B
YAML
25 lines
No EOL
456 B
YAML
name: Test workflow
|
|
on: [push]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
with:
|
|
fetch-depth: 1
|
|
|
|
- name: Set up Python 3.7
|
|
uses: actions/setup-python@v1
|
|
with:
|
|
python-version: 3.7
|
|
architecture: x64
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
pip install -e .[dev]
|
|
|
|
- name: Test with pytest
|
|
run: |
|
|
pytest -s |