Skip to content

Commit

Permalink
Publish CI artifacts - fixes KyranRana#138, fixes KyranRana#140, fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jaymoulin committed Mar 24, 2020
1 parent 16b158b commit 9ff5daa
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
matrix:
operating-system: [ubuntu-latest]
php-versions: ['7.0', '7.1', '7.2', '7.3', '7.4']
php-versions: ['7.2', '7.3', '7.4']
runs-on: ${{ matrix.operating-system }}
name: PHP ${{ matrix.php-versions }} Test on ${{ matrix.operating-system }}
steps:
Expand All @@ -34,4 +34,16 @@ jobs:
run: composer install --prefer-dist

- name: Tests
run: cd src/test && ../../vendor/phpunit/phpunit/phpunit .
run: composer phpunit

- name: Publish Tests artifacts
uses: actions/upload-artifact@v1
with:
name: Tests
path: ./build/logs/junit.xml

- name: Publish Coverage artifacts
uses: actions/upload-artifact@v1
with:
name: Coverage
path: ./build/coverage/report
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Cloudflare Bypass

![CI](https://github.com/KyranRana/cloudflare-bypass/workflows/CI/badge.svg)
[![CI](https://github.com/KyranRana/cloudflare-bypass/workflows/CI/badge.svg)](https://github.com/jaymoulin/cloudflare-bypass/actions?query=workflow%3ACI)

A new and improved PHP library which bypasses the Cloudflare IUAM page using cURL.

Expand Down

0 comments on commit 9ff5daa

Please sign in to comment.