1
0
Fork 0
mirror of synced 2024-06-26 10:00:19 +12:00
ArchiveBox/.github/workflows/test.yml

25 lines
456 B
YAML
Raw Normal View History

2020-07-04 08:52:28 +12:00
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