-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #25 from slowy07/pull-request-template
docs: menambahkan pull request template
- Loading branch information
Showing
2 changed files
with
31 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,30 @@ | ||
## Deskripsi (Description) | ||
<!-- Deskripsikan tentang perubahan yang kamu berikan. --> | ||
|
||
## Checklist: | ||
### Umum: | ||
<!-- Checklist semua perubahan yang sesuai. --> | ||
- [ ] Saya menambah algoritma terbaru. | ||
- [ ] Saya memperbaiki algoritma yang sudah ada. | ||
- [ ] Saya memperbaiki dokumentasi. | ||
- [ ] Saya menambah dokumentasi. | ||
|
||
### Contributor Requirements (Syarat Kontributor) dan Lain-Lain: | ||
<!-- Checklist semua perubahan yang sesuai. Wajib checklist opsi pertama. --> | ||
- [ ] Saya sudah membaca (I have read) [CONTRIBUTING](https://github.com/bellshade/Rust/blob/main/CONTRIBUTING.md) dan sudah menyetujui semua syarat. | ||
- [ ] Saya menggunakan bahasa Indonesia untuk memberikan penjelasan dari kode yang saya buat. | ||
|
||
### Unit Testing dan Linting: | ||
<!-- Checklist unit tester / linter yang sesuai. --> | ||
- [ ] cargo fmt | ||
|
||
## Environment | ||
|
||
Saya menggunakan (I'm using): | ||
<!-- Ganti sesuai yang digunakan. --> | ||
- ``os`` = ``linux / windows / macOS`` | ||
- ``rust`` = ``rustc --version`` | ||
|
||
<!-- Jika ada gagal pada salah satu test, kami akan mengeceknya kembali. --> | ||
<!-- If there is a failure in one of the tests, we will check it again. --> | ||
linked issue #NOMOR_ISSUE <!--contoh #1--> |
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 |
---|---|---|
|
@@ -14,5 +14,5 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v2 | ||
- name: cargo fmt | ||
run: cargo fmt --all -- --check | ||
run: cargo fmt | ||
|