From 24f657cf50f08f0d1a6dc868019a80cce3eaf41c Mon Sep 17 00:00:00 2001 From: Ben Cross Date: Fri, 1 Sep 2023 16:37:27 +0100 Subject: [PATCH] Rename LICENSE and add build workflow --- .github/dependabot.yml | 6 ++++++ .github/workflows/build.yml | 26 ++++++++++++++++++++++++++ LICENCE => LICENSE | 0 README.md | 2 +- 4 files changed, 33 insertions(+), 1 deletion(-) create mode 100644 .github/dependabot.yml create mode 100644 .github/workflows/build.yml rename LICENCE => LICENSE (100%) diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..b18fd29 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,6 @@ +version: 2 +updates: + - package-ecosystem: 'github-actions' + directory: '/' + schedule: + interval: 'weekly' diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..9abe151 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,26 @@ +name: Build + +on: + push: + branches: + - main + paths-ignore: + - '**.md' + pull_request: + paths-ignore: + - '**.md' + +jobs: + plugin_test: + timeout-minutes: 10 + strategy: + fail-fast: false + matrix: + os: + - ubuntu-latest + - macos-latest + runs-on: ${{ matrix.os }} + steps: + - uses: asdf-vm/actions/plugin-test@v2 + with: + command: 'clj-kondo --version' diff --git a/LICENCE b/LICENSE similarity index 100% rename from LICENCE rename to LICENSE diff --git a/README.md b/README.md index 979cb76..8954094 100644 --- a/README.md +++ b/README.md @@ -45,4 +45,4 @@ install & manage versions. Copyright © 2023 Kroo Bank Ltd. -This library and source code are available under the terms of the MIT licence. A full copy of the licence file is provided in the `LICENCE` file of the source code. +This library and source code are available under the terms of the MIT licence. A full copy of the licence file is provided in the `LICENSE` file of the source code.