mirror of
https://github.com/graphql-python/graphene.git
synced 2024-11-15 06:07:28 +03:00
26 lines
467 B
YAML
26 lines
467 B
YAML
|
name: 📊 Check Coverage
|
||
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- master
|
||
|
- '*.x'
|
||
|
paths-ignore:
|
||
|
- 'docs/**'
|
||
|
- '*.md'
|
||
|
- '*.rst'
|
||
|
pull_request:
|
||
|
branches:
|
||
|
- master
|
||
|
- '*.x'
|
||
|
paths-ignore:
|
||
|
- 'docs/**'
|
||
|
- '*.md'
|
||
|
- '*.rst'
|
||
|
jobs:
|
||
|
coveralls_finish:
|
||
|
# check coverage increase/decrease
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Coveralls Finished
|
||
|
uses: AndreMiras/coveralls-python-action@develop
|