From 9ee82ed202acb3c35847829ce4a02d7891ad9700 Mon Sep 17 00:00:00 2001 From: AXON <39482679+AXIM0S@users.noreply.github.com> Date: Fri, 8 Jan 2021 00:41:36 +0600 Subject: [PATCH 1/2] Create rust.yml --- .github/workflows/rust.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/rust.yml diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml new file mode 100644 index 0000000..3c13d1b --- /dev/null +++ b/.github/workflows/rust.yml @@ -0,0 +1,22 @@ +name: Rust + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +env: + CARGO_TERM_COLOR: always + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Build + run: cargo build --verbose + - name: Run tests + run: cargo test --verbose From 12b19d115ad15d7ae2a1dd134746285e57a5ca53 Mon Sep 17 00:00:00 2001 From: AXON <39482679+AXIM0S@users.noreply.github.com> Date: Fri, 8 Jan 2021 00:50:30 +0600 Subject: [PATCH 2/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6599875..04145b2 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Introduction +# Introduction [![Rust Actions Status](https://github.com/AXIM0S/rusty-magisk/workflows/Rust/badge.svg)](https://github.com/AXIM0S/rusty-magisk/actions) This is my very first public `rust` project for fun purposes.