Skip to content

Commit

Permalink
Update python-app.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
oliver-zehentleitner committed Apr 8, 2021
1 parent 5479a79 commit 9915b49
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,33 +10,31 @@ on:
branches: [ master ]

jobs:
build:
test:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- uses: actions/setup-python@v1

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r test-requirements.txt
pip install coveralls
- name: Unittest
- name: Unit test
run: |
unittest_unicorn_fy.py
coverage run --source unicorn_fy unittest_unicorn_fy.py
- name: Coveralls
uses: AndreMiras/coveralls-python-action@develop
with:
parallel: true
flag-name: Unit Test

coveralls_finish:
needs: build
needs: test
runs-on: ubuntu-latest
steps:
- name: Coveralls Finished
Expand Down

0 comments on commit 9915b49

Please sign in to comment.