We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51ed853 commit 3c5875fCopy full SHA for 3c5875f
.github/workflows/ci.yml
@@ -37,6 +37,30 @@ jobs:
37
- name: "Run vimeo/psalm"
38
run: "php7.3 ./tools/psalm --config=.psalm/config.xml --no-progress --shepherd --show-info=false --stats"
39
40
+ backward-compatibility:
41
+ name: Backward Compatibility
42
+
43
+ runs-on: ubuntu-latest
44
45
+ steps:
46
+ - name: Checkout
47
+ uses: actions/checkout@v2
48
+ with:
49
+ fetch-depth: 0
50
51
+ - name: Fetch tags
52
+ run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*
53
54
+ - name: Install PHP with extensions
55
+ uses: shivammathur/setup-php@v2
56
57
+ php-version: 7.4
58
+ coverage: none
59
+ extensions: intl
60
61
+ - name: Run roave/backward-compatibility-check
62
+ run: ./tools/roave-backward-compatibility-check --from=4.0.0
63
64
tests:
65
name: "Tests"
66
0 commit comments