Skip to content

Commit

Permalink
Update continuous-integration.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
neilime committed Apr 1, 2020
1 parent 0d1133a commit 5247c22
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
name: Continuous integration

on: [push, pull_request]
on:
push:
branches:
- master
paths-ignore:
- '**.md'
pull_request:
paths-ignore:
- '**.md'

jobs:
build:
strategy:
Expand Down Expand Up @@ -39,7 +48,7 @@ jobs:
composer test:ci
- name: Upload coverage results to Coveralls
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
if: github.event_name == 'push' && github.ref == 'refs/heads/master' && matrix.php-versions == '7.4'
uses: codecov/codecov-action@master
with:
file: ./build/logs/clover.xml

0 comments on commit 5247c22

Please sign in to comment.