diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 73e8edebe6dca47f118841ab05b42cb1cd833369..dda49c163471b548296240f4a42d1d0bc97d5931 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -21,16 +21,14 @@ jobs:
       - uses: actions/setup-go@v4
         with:
           go-version: '1.20'
-      - name: "Install libheif"
-        run: "chmod +x ./.github/workflows/build-libheif.sh && ./.github/workflows/build-libheif.sh"
       - name: "Prepare: compile assets"
         run: "GOBIN=$PWD/bin go install -v ./cmd/compile_assets"
       - name: "Run: compile assets"
         run: "$PWD/bin/compile_assets"
       - name: "Prepare: staticcheck"
         run: 'go install honnef.co/go/tools/cmd/staticcheck@latest'
-      - run: 'go vet ./...'
-      - run: 'staticcheck ./...'
+      - run: 'go vet ./cmd/...'
+      - run: 'staticcheck ./cmd/...'
   test:
     name: 'Go Test (1.20)'
     runs-on: ubuntu-latest