Skip to content

Commit 1873639

Browse files
authored
Merge pull request #11 from inferno-framework/v062-updates
Inferno Core v.0.6.4 updates
2 parents 83e184d + c3b77a4 commit 1873639

15 files changed

Lines changed: 211 additions & 80 deletions
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Publish Docs Wiki
2+
on:
3+
push:
4+
branches: [main]
5+
paths:
6+
- docs/**
7+
workflow_dispatch:
8+
concurrency:
9+
group: publish-docs-wiki
10+
cancel-in-progress: true
11+
permissions:
12+
contents: write
13+
jobs:
14+
publish-docs-wiki:
15+
runs-on: ubuntu-latest
16+
steps:
17+
- uses: actions/checkout@v4
18+
- uses: Andrew-Chen-Wang/github-wiki-action@86138cbd6328b21d759e89ab6e6dd6a139b22270
19+
with:
20+
path: docs
21+
strategy: init

.github/workflows/ruby.yml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name: Ruby
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
pull_request:
7+
branches: [ main ]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
strategy:
13+
matrix:
14+
ruby-version: ['3.3.6']
15+
16+
steps:
17+
- uses: actions/checkout@v2
18+
- name: Set up Ruby
19+
uses: ruby/setup-ruby@v1
20+
with:
21+
ruby-version: ${{ matrix.ruby-version }}
22+
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
23+
24+
test:
25+
needs: build
26+
runs-on: ubuntu-latest
27+
strategy:
28+
matrix:
29+
ruby-version: ['3.3.6']
30+
steps:
31+
- uses: actions/checkout@v2
32+
- name: Set up Ruby
33+
uses: ruby/setup-ruby@v1
34+
with:
35+
ruby-version: ${{ matrix.ruby-version }}
36+
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
37+
- name: Run tests
38+
run: bundle exec rake

.ruby-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.1.2
1+
3.3.6

.tool-versions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
ruby 3.1.2
1+
ruby 3.3.6

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ruby:3.1.2
1+
FROM ruby:3.3.6
22

33
ENV INSTALL_PATH=/opt/inferno/
44
ENV APP_ENV=production

Gemfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,6 @@ gemspec
77
group :development, :test do
88
gem 'debug'
99
gem 'foreman'
10+
gem 'rack-test', '~> 2.1'
1011
gem 'rerun'
1112
end

0 commit comments

Comments
 (0)