From fc1b647fd9cddf81bedd401b1a1f0ae85605bf1a Mon Sep 17 00:00:00 2001 From: Denis Smet Date: Sun, 15 Oct 2023 21:13:39 +0400 Subject: [PATCH 1/2] New badge --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index af74057..0ea469a 100644 --- a/README.md +++ b/README.md @@ -1 +1,4 @@ -# Clojure-Sicp \ No newline at end of file +# Clojure-Sicp + +[![Clojure CI](https://github.com/SmetDenis/Clojure-Sicp/actions/workflows/main.yml/badge.svg?branch=main)](https://github.com/SmetDenis/Clojure-Sicp/actions/workflows/main.yml) + From f471975badf5dff46406c3d89b3e6176c32ccc59 Mon Sep 17 00:00:00 2001 From: Denis Smet Date: Sun, 15 Oct 2023 21:16:23 +0400 Subject: [PATCH 2/2] New badge --- .github/workflows/main.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 1decdcc..2307e22 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -14,21 +14,21 @@ jobs: - name: Checkout uses: actions/checkout@v3 - - name: Prepare java + - name: Prepare Java uses: actions/setup-java@v3 with: distribution: 'zulu' java-version: '8' - - name: Install clojure tools + - name: Install Clojure tools uses: DeLaGuardo/setup-clojure@12.1 with: cli: 'latest' bb: 'latest' cljfmt: 'latest' - - name: Run tests + - name: Codestyle run: bb lint:cs:check - - name: Run tests + - name: Unit tests run: bb test