forked from Rust-GCC/rusttest-to-dg
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add CI workflow, PR and issue template
Signed-off-by: Muhammad Mahad <[email protected]>
- Loading branch information
1 parent
65ad202
commit 9b14d0e
Showing
4 changed files
with
73 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<!-- | ||
Before submitting a PR, please read this: | ||
- Give the PR a descriptive title. | ||
Examples of bad title: | ||
- fix #7123 | ||
- update docs | ||
- fix bugs | ||
- Make sure to run: | ||
- [ ] `cargo check` , | ||
- [ ] `cargo test` and | ||
- [ ] `cargo fmt` | ||
before submitting the PR. | ||
--> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
--- | ||
name: Bug Report | ||
about: Create a bug report to help us improve | ||
labels: bug | ||
title: '[bug] ' | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Describe the bug:** | ||
A clear and concise description of the bug. | ||
|
||
**To Reproduce:** | ||
Steps to reproduce the behavior. | ||
|
||
**Platform/Meta:** | ||
Specify OS, distribution, git sha and hardware platform. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
name: Rust Test to DejaGnu -- Build & Test | ||
|
||
on: | ||
push: | ||
pull_request: | ||
|
||
env: | ||
CARGO_TERM_COLOR: always | ||
RUST_BACKTRACE: full | ||
|
||
jobs: | ||
build_and_test: | ||
name: Cargo Build, Test, Clippy, Fmt | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
toolchain: | ||
# Only test on rust stable version | ||
- stable | ||
- beta | ||
- nightly | ||
|
||
steps: | ||
- name: Checkout sources | ||
uses: actions/checkout@v4 | ||
|
||
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }} | ||
|
||
- name: Cargo Build | ||
run: cargo build --verbose | ||
|
||
- name: Cargo Test | ||
run: cargo test --verbose | ||
|
||
- name: Cargo fmt | ||
run: cargo fmt --all --check | ||
|
||
- name: Clippy check | ||
run: cargo clippy --all-targets --all-features |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters