Skip to content
This repository has been archived by the owner on Jun 11, 2024. It is now read-only.

Commit

Permalink
Merge pull request #4 from Qwant/github-workflow
Browse files Browse the repository at this point in the history
Replace travis with GitHub workflow
  • Loading branch information
amatissart authored Jan 15, 2021
2 parents 8c343b5 + ec6389f commit 7e12367
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 17 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest
steps:

- uses: actions/checkout@v2

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.7'

- name: Install dependancies
run: |
pip install pipenv
pipenv install --dev --deploy
- name: Run tests
run: pipenv run pytest
17 changes: 0 additions & 17 deletions .travis.yml

This file was deleted.

0 comments on commit 7e12367

Please sign in to comment.