diff --git a/.github/workflows/main.yml b/.github/workflows/test.yml similarity index 51% rename from .github/workflows/main.yml rename to .github/workflows/test.yml index ccf9897..2a68e57 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/test.yml @@ -1,27 +1,19 @@ -name: Ruby - +name: Test on: push: - branches: - - main - - pull_request: - jobs: - build: - runs-on: ubuntu-latest - name: Ruby ${{ matrix.ruby }} + test: strategy: matrix: - ruby: - - '3.4.2' - + os: [ubuntu-latest, macos-latest] + ruby: ["3.1", "3.2", "3.3", "3.3"] + runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v4 - - name: Set up Ruby + - name: Set up Ruby ${{ matrix.ruby }} uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} bundler-cache: true - - name: Run the default task + - name: Run Test run: bundle exec rake diff --git a/.gitignore b/.gitignore index 9106b2a..e5f78ae 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,5 @@ /pkg/ /spec/reports/ /tmp/ + +/Gemfile.lock diff --git a/Gemfile.lock b/Gemfile.lock deleted file mode 100644 index b7de68e..0000000 --- a/Gemfile.lock +++ /dev/null @@ -1,142 +0,0 @@ -PATH - remote: . - specs: - serverkit-mise (0.1.0) - serverkit - -GEM - remote: https://rubygems.org/ - specs: - activemodel (8.0.2) - activesupport (= 8.0.2) - activesupport (8.0.2) - base64 - benchmark (>= 0.3) - bigdecimal - concurrent-ruby (~> 1.0, >= 1.3.1) - connection_pool (>= 2.2.5) - drb - i18n (>= 1.6, < 2) - logger (>= 1.4.2) - minitest (>= 5.1) - securerandom (>= 0.3) - tzinfo (~> 2.0, >= 2.0.5) - uri (>= 0.13.1) - ast (2.4.3) - base64 (0.2.0) - benchmark (0.4.0) - bigdecimal (3.1.9) - concurrent-ruby (1.3.5) - connection_pool (2.5.1) - date (3.4.1) - drb (2.2.1) - hashie (5.0.0) - highline (3.1.2) - reline - i18n (1.14.7) - concurrent-ruby (~> 1.0) - io-console (0.8.0) - irb (1.15.2) - pp (>= 0.6.0) - rdoc (>= 4.0.0) - reline (>= 0.4.2) - json (2.10.2) - language_server-protocol (3.17.0.4) - lint_roller (1.1.0) - logger (1.7.0) - minitest (5.25.5) - net-scp (4.1.0) - net-ssh (>= 2.6.5, < 8.0.0) - net-ssh (7.3.0) - net-telnet (0.2.0) - parallel (1.27.0) - parser (3.3.8.0) - ast (~> 2.4.1) - racc - pp (0.6.2) - prettyprint - prettyprint (0.2.0) - prism (1.4.0) - psych (5.2.3) - date - stringio - racc (1.8.1) - rainbow (3.1.1) - rake (13.2.1) - rdoc (6.13.1) - psych (>= 4.0.0) - regexp_parser (2.10.0) - reline (0.6.1) - io-console (~> 0.5) - rubocop (1.75.2) - json (~> 2.3) - language_server-protocol (~> 3.17.0.2) - lint_roller (~> 1.1.0) - parallel (~> 1.10) - parser (>= 3.3.0.2) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 2.9.3, < 3.0) - rubocop-ast (>= 1.44.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 4.0) - rubocop-ast (1.44.1) - parser (>= 3.3.7.2) - prism (~> 1.4) - rubocop-performance (1.25.0) - lint_roller (~> 1.1) - rubocop (>= 1.75.0, < 2.0) - rubocop-ast (>= 1.38.0, < 2.0) - ruby-progressbar (1.13.0) - securerandom (0.4.1) - serverkit (0.9.0) - activemodel - activesupport (>= 5.0.0) - bundler - hashie - highline - rainbow - slop (~> 3.4) - specinfra (>= 2.31.0) - unix-crypt - sfl (2.3) - slop (3.6.0) - specinfra (2.93.0) - base64 - net-scp - net-ssh (>= 2.7) - net-telnet - sfl - standard (1.49.0) - language_server-protocol (~> 3.17.0.2) - lint_roller (~> 1.0) - rubocop (~> 1.75.2) - standard-custom (~> 1.0.0) - standard-performance (~> 1.8) - standard-custom (1.0.2) - lint_roller (~> 1.0) - rubocop (~> 1.50) - standard-performance (1.8.0) - lint_roller (~> 1.1) - rubocop-performance (~> 1.25.0) - stringio (3.1.6) - tzinfo (2.0.6) - concurrent-ruby (~> 1.0) - unicode-display_width (3.1.4) - unicode-emoji (~> 4.0, >= 4.0.4) - unicode-emoji (4.0.4) - unix-crypt (1.3.1) - uri (1.0.3) - -PLATFORMS - arm64-darwin-24 - ruby - -DEPENDENCIES - irb - minitest (~> 5.16) - rake (~> 13.0) - serverkit-mise! - standard (~> 1.3) - -BUNDLED WITH - 2.6.8