Skip to content
This repository has been archived by the owner on Mar 8, 2020. It is now read-only.

Commit

Permalink
Install github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
pingiun committed Oct 23, 2019
1 parent 6da04cb commit ac87946
Show file tree
Hide file tree
Showing 8 changed files with 74 additions and 195 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/pythonapp.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Python application

on: [push]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- name: Set up Python 3.7
uses: actions/setup-python@v1
with:
python-version: 3.7
- name: Install dependencies
run: |
sudo apt install language-pack-nl
pip install poetry
pip install coverage
poetry install
- name: Test with Django
run: |
poetry run coverage run --source=orders --omit="*/migrations/*" manage.py test
- name: Upload to Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.github_token }}
11 changes: 11 additions & 0 deletions eetfestijn.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
Metadata-Version: 1.2
Name: eetfestijn
Version: 0.1.0
Summary: UNKNOWN
Home-page: UNKNOWN
Author: Thalia Technicie
Author-email: [email protected]
License: UNKNOWN
Description: UNKNOWN
Platform: UNKNOWN
Requires-Python: >=3.7,<4.0
11 changes: 11 additions & 0 deletions eetfestijn.egg-info/SOURCES.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
README.md
setup.py
eetfestijn/__init__.py
eetfestijn/settings.py
eetfestijn/urls.py
eetfestijn/wsgi.py
eetfestijn.egg-info/PKG-INFO
eetfestijn.egg-info/SOURCES.txt
eetfestijn.egg-info/dependency_links.txt
eetfestijn.egg-info/requires.txt
eetfestijn.egg-info/top_level.txt
1 change: 1 addition & 0 deletions eetfestijn.egg-info/dependency_links.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

7 changes: 7 additions & 0 deletions eetfestijn.egg-info/requires.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Django<2.1,>=2.0
coverage<5.0,>=4.5
django-bootstrap3<12,>=11
python-dateutil==2.8.0
requests==2.22.0
uWSGI<2.1,>=2.0
weasyprint<51,>=50
1 change: 1 addition & 0 deletions eetfestijn.egg-info/top_level.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
eetfestijn
208 changes: 14 additions & 194 deletions poetry.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ python-dateutil = "2.8.0"
requests = "2.22.0"
uWSGI = "~2.0"
weasyprint = "^50"
coverage = "^4.5"

[tool.poetry.dev-dependencies]
tox = "~3.14"

[build-system]
requires = ["poetry>=0.12"]
Expand Down

0 comments on commit ac87946

Please sign in to comment.