We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d1d9e66 commit 6400c1eCopy full SHA for 6400c1e
.github/workflows/ci.yml
@@ -46,6 +46,30 @@ jobs:
46
- name: Run vimeo/psalm
47
run: ./tools/psalm --no-progress --shepherd --show-info=false --stats
48
49
+ backward-compatibility:
50
+ name: Backward Compatibility
51
+
52
+ runs-on: ubuntu-latest
53
54
+ steps:
55
+ - name: Checkout
56
+ uses: actions/checkout@v2
57
+ with:
58
+ fetch-depth: 0
59
60
+ - name: Fetch tags
61
+ run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*
62
63
+ - name: Install PHP with extensions
64
+ uses: shivammathur/setup-php@v2
65
66
+ php-version: 7.4
67
+ coverage: none
68
+ extensions: intl
69
70
+ - name: Run roave/backward-compatibility-check
71
+ run: ./tools/roave-backward-compatibility-check --from=3.0.0
72
73
tests:
74
name: Tests
75
0 commit comments