We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da4861c commit cfb0e35Copy full SHA for cfb0e35
1 file changed
.github/workflows/test-rector.yml
@@ -80,5 +80,14 @@ jobs:
80
- name: Install dependencies
81
run: composer update --ansi --no-interaction
82
83
+ - name: Rector Cache
84
+ uses: actions/cache@v4
85
+ with:
86
+ path: /tmp/rector-${{ matrix.paths }}
87
+ key: ${{ runner.os }}-rector-${{ github.run_id }}-${{ matrix.paths }}
88
+ restore-keys: ${{ runner.os }}-rector-${{ matrix.paths }}
89
+
90
+ - run: mkdir -p /tmp/rector-${{ matrix.paths }}
91
92
- name: Run static analysis
93
run: vendor/bin/rector process ${{ matrix.paths }} --dry-run --no-progress-bar
0 commit comments