Skip to content

Commit aa596da

Browse files
authoredSep 24, 2020
GitHub Actions (#4)
1 parent 70f887e commit aa596da

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed
 

‎.github/workflows/test.yml

+10-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,18 @@
1-
name: Test Suite
1+
name: Static Analysis
22
on: [push, pull_request]
33
jobs:
4-
test-buster:
5-
runs-on: ubuntu-latest
4+
ubuntu-focal-fossa:
5+
runs-on: ubuntu-20.04
66
steps:
77
- uses: actions/checkout@v2
8+
- name: Install libpcap
9+
run: sudo apt-get update && sudo apt-get install -y libpcap-dev
810
- name: Install dependencies
911
run: composer install --no-scripts --no-suggest --no-interaction --prefer-dist --optimize-autoloader
1012
- name: PHPStan
1113
run: php -d memory_limit=-1 ./vendor/bin/phpstan analyse -n -vvv --ansi --level=max src
14+
- name: Psalm
15+
run: php -d memory_limit=-1 ./vendor/bin/psalm --show-info=true
16+
# The provided containers are not flexible enough to support the test suite
17+
# - name: PHPUnit
18+
# run: sudo LIBPCAP_NAME=libpcap.so.0.8 php -d memory_limit=-1 ./vendor/bin/phpunit --debug

0 commit comments

Comments
 (0)
Please sign in to comment.