1
0
Fork 0
mirror of synced 2024-06-18 18:34:51 +12:00

Merge pull request #1 from apkallum/test-actions

feat: test github actions
This commit is contained in:
Apkallum 2020-07-03 17:02:08 -04:00 committed by GitHub
commit 54be47525f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

25
.github/workflows/test.yml vendored Normal file
View file

@ -0,0 +1,25 @@
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