From d03b578dc75773cb47cbc053086dfa876631572c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20G=C3=B6tze?= Date: Thu, 28 Dec 2023 11:07:43 +0100 Subject: [PATCH] Do some CI chore - rename JRuby CI workflow to tests - add dependabot config - simplify copyright in license file --- .github/dependabot.yml | 16 ++++++++++++++++ .github/workflows/{jruby.yml => tests.yml} | 11 ++++++++--- MIT-LICENSE.txt | 2 +- README.md | 2 +- 4 files changed, 26 insertions(+), 5 deletions(-) create mode 100644 .github/dependabot.yml rename .github/workflows/{jruby.yml => tests.yml} (84%) diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..53806ea --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,16 @@ +# Please see the documentation for all configuration options: +# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file + +version: 2 +updates: + # Maintain dependencies for GitHub Actions + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + + # Maintain dependencies for Rubygems + - package-ecosystem: "bundler" + directory: "/" + schedule: + interval: "weekly" diff --git a/.github/workflows/jruby.yml b/.github/workflows/tests.yml similarity index 84% rename from .github/workflows/jruby.yml rename to .github/workflows/tests.yml index 05f7dd6..ad11e4a 100644 --- a/.github/workflows/jruby.yml +++ b/.github/workflows/tests.yml @@ -1,10 +1,15 @@ -name: JRuby CI +--- +name: Tests on: push: - branches: [ main, develop ] + branches: + - main + - develop pull_request: - branches: [ main, develop ] + branches: + - main + - develop jobs: test: diff --git a/MIT-LICENSE.txt b/MIT-LICENSE.txt index 169669e..34b44f3 100644 --- a/MIT-LICENSE.txt +++ b/MIT-LICENSE.txt @@ -1,4 +1,4 @@ -Copyright (c) 2015-2022 Paul Götze +Copyright (c) 2015 Paul Götze Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index e9b44c8..b052615 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Weka -[![Build Status](https://github.com/paulgoetze/weka-jruby/workflows/JRuby%20CI/badge.svg)](https://github.com/paulgoetze/weka-jruby/workflows/JRuby%20CI/badge.svg) [![Gem Version](https://badge.fury.io/rb/weka.svg)](http://badge.fury.io/rb/weka) +[![Build Status](https://github.com/paulgoetze/weka-jruby/workflows/Tests/badge.svg)](https://github.com/paulgoetze/weka-jruby/workflows/Tests/badge.svg) Machine Learning & Data Mining with JRuby based on the [Weka](http://www.cs.waikato.ac.nz/~ml/weka/index.html) Java library.