diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml
index 44fdec4..41321fe 100644
--- a/.github/workflows/pull_request.yml
+++ b/.github/workflows/pull_request.yml
@@ -27,4 +27,22 @@ jobs:
         with:
           addHoldComment: "true"
           status: "${{ job.status }}"
-
+  test:
+    runs-on: ubuntu-latest
+    steps:
+      - uses: actions/checkout@v4
+      - name: Set final commit status
+        uses: actions/github-script@v7
+        if: always()
+        env:
+          GITHUB_TOKEN: ${{ github.token }}
+        with:
+          script: |
+            github.rest.repos.createCommitStatus({
+              owner: context.repo.owner,
+              repo: context.repo.repo,
+              sha: context.payload.pull_request.head.sha,
+              state: 'success',
+              description: "🐛 testing utf emoji!",
+              context: 'test'
+            })