diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 10c77d0..2d623e5 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -26,4 +26,4 @@ jobs:
             --optimize-autoloader
 
       - name: Run PHPCS
-        run: vendor/bin/phpcs -v
+        run: make phpcs
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..b283e57
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,6 @@
+.PHONY: *
+
+phpcs:
+	vendor/bin/phpcs -v
+
+test: phpcs