From b41479c91e6685511c1f8ba8586106b322073b62 Mon Sep 17 00:00:00 2001 From: Ben Sanders Date: Sun, 2 Aug 2026 09:49:25 -0400 Subject: added statscounter code --- .../.github/workflows/linux.yml | 23 ++++++++++++++++++++++ .../.github/workflows/windows.yml | 23 ++++++++++++++++++++++ 2 files changed, 46 insertions(+) create mode 100644 vendor/bundle/ruby/3.4.0/gems/http_parser.rb-0.8.1/.github/workflows/linux.yml create mode 100644 vendor/bundle/ruby/3.4.0/gems/http_parser.rb-0.8.1/.github/workflows/windows.yml (limited to 'vendor/bundle/ruby/3.4.0/gems/http_parser.rb-0.8.1/.github') diff --git a/vendor/bundle/ruby/3.4.0/gems/http_parser.rb-0.8.1/.github/workflows/linux.yml b/vendor/bundle/ruby/3.4.0/gems/http_parser.rb-0.8.1/.github/workflows/linux.yml new file mode 100644 index 0000000..8b27239 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/http_parser.rb-0.8.1/.github/workflows/linux.yml @@ -0,0 +1,23 @@ +name: Testing on Ubuntu +on: + - push + - pull_request +jobs: + build: + runs-on: ${{ matrix.os }} + strategy: + fail-fast: false + matrix: + ruby: [ '3.1', '3.2', '3.3', '3.4', 'head' ] + os: [ 'ubuntu-latest' ] + name: Ruby ${{ matrix.ruby }} unit testing on ${{ matrix.os }} + steps: + - uses: actions/checkout@v4 + - uses: ruby/setup-ruby@v1 + with: + ruby-version: ${{ matrix.ruby }} + - name: unit testing + run: | + gem install bundler rake + bundle install --jobs 4 --retry 3 + bundle exec rake diff --git a/vendor/bundle/ruby/3.4.0/gems/http_parser.rb-0.8.1/.github/workflows/windows.yml b/vendor/bundle/ruby/3.4.0/gems/http_parser.rb-0.8.1/.github/workflows/windows.yml new file mode 100644 index 0000000..b7d9424 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/http_parser.rb-0.8.1/.github/workflows/windows.yml @@ -0,0 +1,23 @@ +name: Testing on Windows +on: + - push + - pull_request +jobs: + build: + runs-on: ${{ matrix.os }} + strategy: + fail-fast: false + matrix: + ruby: [ '3.1', '3.2', '3.3', '3.4', 'head' ] + os: [ 'windows-latest' ] + name: Ruby ${{ matrix.ruby }} unit testing on ${{ matrix.os }} + steps: + - uses: actions/checkout@v4 + - uses: ruby/setup-ruby@v1 + with: + ruby-version: ${{ matrix.ruby }} + - name: unit testing + run: | + gem install bundler rake + bundle install --jobs 4 --retry 3 + bundle exec rake -- cgit v1.2.3