Skip to content

Commit 426fc91

Browse files
authored
Merge pull request #12 from Wal33D/codex/create-github-workflows-and-templates
Add CI workflow and templates
2 parents 5553edb + 6d126f4 commit 426fc91

File tree

4 files changed

+41
-1
lines changed

4 files changed

+41
-1
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: Bug Report
3+
about: Create a bug report to help us improve
4+
title: "[Bug] "
5+
labels: bug
6+
assignees: ''
7+
---
8+
9+
**Describe the bug**
10+
A clear and concise description of what the bug is.
11+
12+
**To Reproduce**
13+
Steps to reproduce the behavior.
14+
15+
**Expected behavior**
16+
A clear and concise description of what you expected to happen.
17+
18+
**Environment**
19+
- OS:
20+
- Kernel version:
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Summary
2+
Describe the main changes of this pull request.
3+
4+
# Testing
5+
Explain how you tested the changes.

.github/workflows/build.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Build
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v3
12+
- name: Install dependencies
13+
run: sudo apt-get update && sudo apt-get install -y build-essential linux-headers-$(uname -r)
14+
- name: Build modules
15+
run: make

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ non-production environment before deploying on real hardware.
9292

9393
### Contributing 🤝
9494

95-
Contributions are the cornerstone of this project's growth and success. Whether it's adding new features, fixing bugs, or improving documentation, your help is greatly appreciated.
95+
Contributions are the cornerstone of this project's growth and success. Whether it's adding new features, fixing bugs, or improving documentation, your help is greatly appreciated. When opening an issue, please use the templates in `.github/ISSUE_TEMPLATE`. Pull requests should follow the guidelines outlined in `.github/PULL_REQUEST_TEMPLATE`.
9696

9797
## Support 🤗
9898

0 commit comments

Comments
 (0)