From a791b9579a5801f2738b92d25d04e42c663e8780 Mon Sep 17 00:00:00 2001 From: yassenhalim6-bit Date: Thu, 30 Oct 2025 18:42:15 +0300 Subject: [PATCH 1/2] =?UTF-8?q?Rename=20collections/net-neutrality/index.m?= =?UTF-8?q?d=20to=20collections/net-neutrality=D9=8A=D8=A7=D8=B3=D9=8A?= =?UTF-8?q?=D9=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit scripts$BROWSER "https://vt.tiktok.com/ZSyN72VFk/"https://vt.tiktok.com/ZSyN72VFk/$BROWSER "https://vt.tiktok.com/ZSyN72VFk/"https://vt.tiktok.com/ZSyN72VFk/$BROWSER "https://vt.tiktok.com/ZSyN72VFk/"https://vt.tiktok.com/ZSyN72VFk/ $BROWSER "https://vt.tiktok.com/ZSyN72VFk/"https://vt.tiktok.com/ZSyN72VFk/scriptsscripts ع --- .../net-neutrality\331\212\330\247\330\263\331\212\331\206" | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename collections/net-neutrality/index.md => "collections/net-neutrality\331\212\330\247\330\263\331\212\331\206" (100%) diff --git a/collections/net-neutrality/index.md "b/collections/net-neutrality\331\212\330\247\330\263\331\212\331\206" similarity index 100% rename from collections/net-neutrality/index.md rename to "collections/net-neutrality\331\212\330\247\330\263\331\212\331\206" From 5c7c975e908c7093b3cb118e2b9b69d17e23dd01 Mon Sep 17 00:00:00 2001 From: yassenhalim6-bit Date: Thu, 30 Oct 2025 18:46:33 +0300 Subject: [PATCH 2/2] =?UTF-8?q?Rename=20collections/net-neutrality/index.m?= =?UTF-8?q?d=20to=20collections/net-neutrality=D9=8A=D8=A7=D8=B3=D9=8A?= =?UTF-8?q?=D9=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add missing commands to Ruby workflow for bundler and rubocop. --- .github/workflows/ruby.yml | 41 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 .github/workflows/ruby.yml diff --git a/.github/workflows/ruby.yml b/.github/workflows/ruby.yml new file mode 100644 index 00000000000..386c3c82c6b --- /dev/null +++ b/.github/workflows/ruby.yml @@ -0,0 +1,41 @@ +scriptsbundle install +bundle exec rubocopbundle install +bundle exec rubocopscripts +# This workflow uses actions that are not certified by GitHub. +# They are provided by a third-party and are governed by +# separate terms of service, privacy policy, and support +# documentation. +# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake +# For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby + +name: Ruby + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +permissions: + contents: read + +jobs: + test: + + runs-on: ubuntu-latest + strategy: + matrix: + ruby-version: ['2.6', '2.7', '3.0'] + + steps: + - uses: actions/checkout@v4 + - name: Set up Ruby + # To automatically get bug fixes and new Ruby versions for ruby/setup-ruby, + # change this to (see https://github.com/ruby/setup-ruby#versioning): + # uses: ruby/setup-ruby@v1 + uses: ruby/setup-ruby@55283cc23133118229fd3f97f9336ee23a179fcf # v1.146.0 + with: + ruby-version: ${{ matrix.ruby-version }} + bundler-cache: true # runs 'bundle install' and caches installed gems automatically + - name: Run tests + run: bundle exec rake