-
Notifications
You must be signed in to change notification settings - Fork 1
74 lines (59 loc) · 1.6 KB
/
tests.yml
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
name: CI
on:
pull_request:
push:
branches:
- main
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
name: Build
steps:
- uses: actions/checkout@v3
- name: Cache Cargo registry
uses: actions/cache@v3
with:
path: |
~/.cargo/registry
~/.cargo/git
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Build
run: cargo build --release --all-features
- name: Run linter (clippy)
run: cargo clippy -- -D warnings
- name: Save built extension into artifcat
uses: actions/upload-artifact@v3
with:
name: ext-biscuit-php
path: target/release/libext_biscuit_php.so
tests:
needs: build
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
php-version: ["8.1"]
steps:
- uses: actions/checkout@v3
- name: "Setup extension"
uses: actions/download-artifact@v3
with:
name: ext-biscuit-php
- name: "Install PHP"
uses: "shivammathur/setup-php@v2"
with:
php-version: "${{ matrix.php-version }}"
coverage: "none"
ini-values: "memory_limit=-1"
extensions: mbstring
- name: "Install dependencies (Composer)"
uses: "ramsey/composer-install@v2"
- name: "Run PHPUnit"
run: php -dextension=./libext_biscuit_php.so vendor/bin/phpunit