-
Notifications
You must be signed in to change notification settings - Fork 1
84 lines (67 loc) · 2.51 KB
/
test.yml
File metadata and controls
84 lines (67 loc) · 2.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
name: Tests
on:
pull_request:
paths:
- "src/**.php"
- "tests/**.php"
- ".github/workflows/test.yml"
- ".ci/docker-compose.yml"
push:
branches: main
paths:
- "src/**.php"
- "tests/**.php"
- ".github/workflows/test.yml"
- ".ci/docker-compose.yml"
permissions:
contents: read
jobs:
test:
name: PHPUnit
runs-on: ubuntu-22.04
env:
COMPOSE_FILE: .ci/docker-compose.yml
GOTIFY_URI: "http://127.0.0.1:8080"
HTTPBIN_URI: "http://127.0.0.1:8081"
steps:
- name: Checkout code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Setup PHP
uses: shivammathur/setup-php@44454db4f0199b8b9685a5d763dc37cbf79108e1 # v2.36.0
with:
php-version: '8.3'
extensions: mbstring
- name: Setup problem matchers for PHP
run: echo "::add-matcher::${{ runner.tool_cache }}/php.json"
- name: Setup problem matchers for PHPUnit
run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
- name: Get composer cache directory
id: composer-cache
shell: bash
run: |
echo "dir=$(composer config cache-files-dir)" >> "$GITHUB_OUTPUT"
- name: Cache composer cache directory
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: ${{ runner.os }}-composer-
- name: "Validate composer.json and composer.lock"
run: composer validate --strict
- name: Install dependencies with composer
run: composer install --prefer-dist
#- name: Fetch & setup gotify plugin
# run: bash .ci/scripts/setup-plugin.sh
- name: Start gotify & httpbin docker containers
run: docker compose up -d
- name: Test connections to docker containers
run: bash .ci/scripts/connections.sh
- name: Run phpunit
#run: ./vendor/bin/phpunit --coverage-clover=coverage.xml --testsuite=default,plugin-endpoint
run: ./vendor/bin/phpunit --coverage-clover=coverage.xml --testsuite=default
- name: Stop gotify & httpbin docker docker containers
run: docker compose down
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de # v5.5.2
with:
token: ${{ secrets.CODECOV_TOKEN }}