diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml deleted file mode 100644 index 38a5624..0000000 --- a/.github/workflows/ci.yaml +++ /dev/null @@ -1,29 +0,0 @@ -on: - push: - branches: - - main - pull_request: - branches: - - main - -jobs: - ci: - runs-on: ubuntu-24.04 - steps: - - name: Get code - uses: actions/checkout@v3 - - - name: Build kernel module - run: make - - - name: Load kernel module - run: sudo insmod scream.ko - - - name: Check for device - run: ls -l /dev/scream - - - name: Read from device - run: head -c 2048 /dev/scream - - - name: Unload kernel module - run: sudo rmmod scream.ko