From 64a43f0b2d4380c21698b882a929dc1cac775f11 Mon Sep 17 00:00:00 2001 From: 0101coding Date: Fri, 19 Aug 2022 15:07:49 +0100 Subject: [PATCH 1/4] Added Markdown Linting --- .github/workflows/build.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 51aa61f..5369abf 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -6,6 +6,12 @@ env: CARGO_TERM_COLOR: always jobs: + lint-markdowns: + name: Lint markdown files + runs-on: ubuntu-latest + steps: + - name: Lint markdown files + uses: actionshub/markdownlint@main build: name: 🔨Build release runs-on: ubuntu-latest From 67712f1890578485c3b1c2220f006e77fa4ff46f Mon Sep 17 00:00:00 2001 From: 0101coding Date: Fri, 19 Aug 2022 22:10:56 +0100 Subject: [PATCH 2/4] Added status CI badge --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index 4fe80ea..1c21406 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,12 @@ # rust-pip +https://github.com/John15321/rust-pip/actions/workflows/build.yml/badge.svg +https://github.com/John15321/rust-pip/actions/workflows/docs.yml/badge.svg +https://github.com/John15321/rust-pip/actions/workflows/package.yml/badge.svg +https://github.com/John15321/rust-pip/actions/workflows/rust.yml/badge.svg +https://github.com/John15321/rust-pip/actions/workflows/tests.yml/badge.svg + + WORK IN PROGRESS Pip rewritten in Rust From 5df798e5652a0d535555c145459866c820c78e4e Mon Sep 17 00:00:00 2001 From: 0101coding Date: Fri, 19 Aug 2022 23:27:50 +0100 Subject: [PATCH 3/4] Added status CI badge --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 883818e..61d8563 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Lint markdown files - uses: actionshub/markdownlint@main + uses: actionshub/markdownlint@main build: name: 🔨Build release runs-on: ubuntu-latest From 66053867cd308eb9f722516de38bd5e6844ee76b Mon Sep 17 00:00:00 2001 From: 0101coding Date: Sun, 21 Aug 2022 00:24:44 +0100 Subject: [PATCH 4/4] Reformatted Lint --- README.md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 1c21406..b17417a 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,11 @@ # rust-pip -https://github.com/John15321/rust-pip/actions/workflows/build.yml/badge.svg -https://github.com/John15321/rust-pip/actions/workflows/docs.yml/badge.svg -https://github.com/John15321/rust-pip/actions/workflows/package.yml/badge.svg -https://github.com/John15321/rust-pip/actions/workflows/rust.yml/badge.svg -https://github.com/John15321/rust-pip/actions/workflows/tests.yml/badge.svg + +![build](https://github.com/John15321/rust-pip/actions/workflows/build.yml/badge.svg) +![docs](https://github.com/John15321/rust-pip/actions/workflows/docs.yml/badge.svg) +![package](https://github.com/John15321/rust-pip/actions/workflows/package.yml/badge.svg) +![rust-lint](https://github.com/John15321/rust-pip/actions/workflows/rust.yml/badge.svg) +![tests](https://github.com/John15321/rust-pip/actions/workflows/tests.yml/badge.svg) WORK IN PROGRESS