Skip to content

Commit

Permalink
Update gems and switch Travis CI to GitHub Actions in the template
Browse files Browse the repository at this point in the history
  • Loading branch information
knu committed Oct 28, 2024
1 parent 91e2fef commit dd50cc1
Show file tree
Hide file tree
Showing 6 changed files with 142 additions and 27 deletions.
67 changes: 67 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
name: CI

on:
push:
pull_request:

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

jobs:
run-tests:
name: ${{ matrix.os }} ruby-${{ matrix.ruby }} ${{ matrix.database_adapter }}
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
database_adapter:
- mysql2
- postgresql
ruby:
- "3.2"
env:
DATABASE_ADAPTER: ${{ matrix.database_adapter }}
DATABASE_HOST: "127.0.0.1"
DATABASE_USERNAME: root
DATABASE_PASSWORD: password
services:
mysql:
image: mysql:latest
env:
MYSQL_ROOT_PASSWORD: password
ports:
- 3306:3306
options: >-
--health-cmd "mysqladmin ping"
--health-interval 10s
--health-timeout 5s
--health-retries 3
postgres:
image: postgres:latest
env:
POSTGRES_USER: root
POSTGRES_PASSWORD: password
ports:
- 5432:5432
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 3
steps:
- uses: actions/checkout@v4

- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
rubygems: latest
bundler: latest
bundler-cache: true

- name: Set up database
run: bundle exec rake db:create db:migrate

- name: Run tests
run: bundle exec rake
6 changes: 0 additions & 6 deletions .travis.yml

This file was deleted.

12 changes: 6 additions & 6 deletions huginn_agent.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ Gem::Specification.new do |spec|
spec.require_paths = ["lib"]

spec.add_runtime_dependency 'thor'
spec.add_development_dependency "bundler", "~> 1.7"
spec.add_development_dependency "rake", "~> 10.0"
spec.add_development_dependency "rspec", "~> 3.4"
spec.add_development_dependency "simplecov", "~> 0.11.2"
spec.add_development_dependency "guard", "~> 2.13.0"
spec.add_development_dependency "guard-rspec", "~> 4.6.5"
spec.add_development_dependency "bundler", "~> 2.5"
spec.add_development_dependency "rake", ">= 12.3.3"
spec.add_development_dependency "rspec", "~> 3.12"
spec.add_development_dependency "simplecov", "~> 0.12"
spec.add_development_dependency "guard", "~> 2.18"
spec.add_development_dependency "guard-rspec", "~> 4.7"
end
67 changes: 67 additions & 0 deletions lib/huginn_agent/templates/newagent/.github/workflows/ci.yml.tt
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
name: CI

on:
push:
pull_request:

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

jobs:
run-tests:
name: ${{ matrix.os }} ruby-${{ matrix.ruby }} ${{ matrix.database_adapter }}
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
database_adapter:
- mysql2
- postgresql
ruby:
- "3.2"
env:
DATABASE_ADAPTER: ${{ matrix.database_adapter }}
DATABASE_HOST: "127.0.0.1"
DATABASE_USERNAME: root
DATABASE_PASSWORD: password
services:
mysql:
image: mysql:latest
env:
MYSQL_ROOT_PASSWORD: password
ports:
- 3306:3306
options: >-
--health-cmd "mysqladmin ping"
--health-interval 10s
--health-timeout 5s
--health-retries 3
postgres:
image: postgres:latest
env:
POSTGRES_USER: root
POSTGRES_PASSWORD: password
ports:
- 5432:5432
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 3
steps:
- uses: actions/checkout@v4

- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
rubygems: latest
bundler: latest
bundler-cache: true

- name: Set up database
run: bundle exec rake db:create db:migrate

- name: Run tests
run: bundle exec rake
4 changes: 2 additions & 2 deletions lib/huginn_agent/templates/newagent/newagent.gemspec.tt
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ Gem::Specification.new do |spec|
spec.test_files = Dir['spec/**/*.rb'].reject { |f| f[%r{^spec/huginn}] }
spec.require_paths = ["lib"]

spec.add_development_dependency "bundler", "~> 1.7"
spec.add_development_dependency "rake", "~> 10.0"
spec.add_development_dependency "bundler", "~> 2.5"
spec.add_development_dependency "rake", ">= 12.3.3"

spec.add_runtime_dependency "huginn_agent"
end
13 changes: 0 additions & 13 deletions lib/huginn_agent/templates/newagent/travis.yml.tt

This file was deleted.

0 comments on commit dd50cc1

Please sign in to comment.