41
41
- name : Checkout code
42
42
uses : actions/checkout@v4
43
43
44
+ - name : Install PHP
45
+ uses : shivammathur/setup-php@v2
46
+ with :
47
+ php-version : ' latest'
48
+ ini-values : error_reporting=-1, display_errors=On, log_errors_max_len=0
49
+ tools : phpcs, phpcbf
50
+ coverage : none
51
+
52
+ # Make sure we've gotten the latest version from setup-php.
53
+ - name : Retrieve latest release info
54
+
55
+ id : get_latest_release
56
+ with :
57
+ route : GET /repos/PHPCSStandards/PHP_CodeSniffer/releases/latest
58
+ env :
59
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
60
+
61
+ - name : Grab latest tag name from API response
62
+ id : latest_version
63
+ run : |
64
+ echo "TAG=${{ fromJson(steps.get_latest_release.outputs.data).tag_name }}" >> "$GITHUB_OUTPUT"
65
+
66
+ - name : Grab the version
67
+ id : phar_version
68
+ # yamllint disable-line rule:line-length
69
+ run : echo "VERSION=$(phpcs --version | grep --only-matching --max-count=1 --extended-regexp '\b[0-9]+(\.[0-9]+)+')" >> "$GITHUB_OUTPUT"
70
+
71
+ - name : Fail the build if the PHAR is not the correct version
72
+ if : ${{ steps.phar_version.outputs.VERSION != steps.latest_version.outputs.TAG }}
73
+ run : exit 1
74
+
75
+ # ############################
76
+ # Prepare output snippets.
77
+ # ############################
78
+
79
+ - name : Create directory to place snippets in
80
+ run : mkdir build/output-snippets
81
+
82
+ - name : " Usage page: phpcs help"
83
+ run : phpcs --report-width=110 --no-colors -h > build/output-snippets/phpcs-h.txt
84
+
85
+ - name : " Fixing page: phpcbf help"
86
+ run : phpbfs --report-width=110 --no-colors -h > build/output-snippets/phpcbf-h.txt
87
+
88
+
89
+
90
+ # ############################
91
+ # Update Wiki files.
92
+ # ############################
93
+
44
94
- name : Install DocToc table of contents generator
45
95
run : npm install -g doctoc
46
96
@@ -54,6 +104,11 @@ jobs:
54
104
- name : Re-run tables of contents with different settings for specific file
55
105
run : doctoc ./_wiki/Version-4.0-User-Upgrade-Guide.md --github --maxlevel 3 --update-only
56
106
107
+
108
+ # ############################
109
+ # Deploy.
110
+ # ############################
111
+
57
112
# Retention is normally 90 days, but this artifact is only to help with reviewing PRs,
58
113
# especially when new output blocks are added or the (workflow) code for existing ones
59
114
# is updated. All in all, no need to keep the artifact for more than a few days.
0 commit comments