Skip to content

Commit

Permalink
Setup CI using GitHub Actions (#3)
Browse files Browse the repository at this point in the history
* Setup CI using GitHub Actions
* Add README.md
  • Loading branch information
danieljanes authored Feb 17, 2020
1 parent ff576d1 commit 01a77cf
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/py.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Python CI

on:
push:
branches:
- master
pull_request:
branches:
- master

jobs:
test:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: 3.7.6
- name: Install build tools
run: |
python -m pip install -U pip==20.0.2
python -m pip install -U setuptools==45.1.0
python -m pip install -U poetry==1.0.3
poetry config virtualenvs.create false
- name: Install dependencies
run: python -m poetry install
- name: Lint + Test (isort/black/mypy/pylint/pytest)
run: ./dev/test.sh
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Flower

0 comments on commit 01a77cf

Please sign in to comment.