Skip to content

Commit

Permalink
Merge branch 'main' into customized/px5
Browse files Browse the repository at this point in the history
  • Loading branch information
ParadoxV5 committed Feb 23, 2024
2 parents 3ef5e95 + 849107d commit 0de5fca
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 8 deletions.
1 change: 1 addition & 0 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ on:
- docs/**
- lib/**
- README.md
- Gemfile

concurrency:
group: pages
Expand Down
9 changes: 7 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
name: Test with Minitest
on:
push:
paths: [.github/workflows/test.yml, lib/**, test/**, Gemfile, '*.gemspec']
paths: &paths
- .github/workflows/test.yml
- lib/**
- test/**
- Gemfile
- '*.gemspec'
pull_request:
paths: [.github/workflows/test.yml, lib/**, test/**, Gemfile, '*.gemspec']
paths: *paths
jobs:

test:
Expand Down
9 changes: 7 additions & 2 deletions .github/workflows/type_check.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
name: Check Types with Steep
on:
push:
paths: [.github/workflows/type_check.yml, lib/**, sig/**, Gemfile, '*.gemspec']
paths: &paths
- .github/workflows/type_check.yml
- lib/**
- sig/**
- Gemfile
- '*.gemspec'
pull_request:
paths: [.github/workflows/type_check.yml, lib/**, sig/**, Gemfile, '*.gemspec']
paths: *paths
jobs:

type_check:
Expand Down
6 changes: 3 additions & 3 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ gemspec
# Development Apps
group :development do
group :type_check do
gem 'rbs', '~> 3.4.0', require: false
gem 'rbs', '~> 3.4.4', require: false
gem 'steep', '~> 1.6.0', require: false
end
group :documentation do
gem 'yard', '~> 0.9.0', require: false
gem 'commonmarker', '~> 1.0.0', require: false
gem 'commonmarker', '~> 0.23.10', require: false
end
group :test do
gem 'rake', '~> 13.1.0'
gem 'minitest', '~> 5.21.1'
gem 'minitest', '~> 5.22.2'
end
end
2 changes: 1 addition & 1 deletion mygem.gemspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# frozen_string_literal: true
require_relative 'lib/mygem/version'

Gem::Specification.new do |spec|
Gem::Specification.new do|spec|
spec.name = 'mygem'
spec.summary = ''
spec.version = MyGem::VERSION
Expand Down
1 change: 1 addition & 0 deletions sig/mygem.rbs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
module MyGem
VERSION: String

end

0 comments on commit 0de5fca

Please sign in to comment.