From f62bab110fecd9be69968735843eb7713a93fdb3 Mon Sep 17 00:00:00 2001 From: Erin Date: Sun, 13 Jun 2021 18:12:21 +0200 Subject: [PATCH 1/3] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index bd4d38e8..a1154cd2 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,8 @@ ![Lines of code](https://img.shields.io/tokei/lines/github/abletheabove/able-script) ![Discord](https://img.shields.io/discord/831368967385120810) +[Able Script Book](https://ablecorp.us/able-script-the-book) + Still shitty ## About From 232595c1bef91dd67185861d7c29d15f5423fd2d Mon Sep 17 00:00:00 2001 From: Erin Date: Sun, 13 Jun 2021 18:14:41 +0200 Subject: [PATCH 2/3] Added CI config Rust Template --- .github/workflows/rust.yaml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/rust.yaml diff --git a/.github/workflows/rust.yaml b/.github/workflows/rust.yaml new file mode 100644 index 00000000..3c13d1be --- /dev/null +++ b/.github/workflows/rust.yaml @@ -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 93289e02f1329de7ba22a0a71ae78eac038ee70e Mon Sep 17 00:00:00 2001 From: Erin Date: Sun, 13 Jun 2021 18:43:09 +0200 Subject: [PATCH 3/3] Added build staus badge --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index a1154cd2..2621e5fe 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,5 @@ # AbleScript +![Build Status](https://img.shields.io/github/workflow/status/AbleCorp/able-script/Rust) ![Lines of code](https://img.shields.io/tokei/lines/github/abletheabove/able-script) ![Discord](https://img.shields.io/discord/831368967385120810)