Skip to content

Commit

Permalink
Added basic build test
Browse files Browse the repository at this point in the history
  • Loading branch information
grandpares authored Oct 25, 2024
1 parent 213db3a commit f1a1d64
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/buildtest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Makefile CI

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
workflow_dispatch:

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Install dependencies
run: sudo apt install -y linux-headers-$(uname -r)

- name: Clean
run: make clean

- name: Build
run: make modules

0 comments on commit f1a1d64

Please sign in to comment.