ruby-changes:57924
From: Hiroshi <ko1@a...>
Date: Thu, 26 Sep 2019 19:27:53 +0900 (JST)
Subject: [ruby-changes:57924] f5248f6f50 (master): [rubygems/rubygems] Added the initial workflow file.
https://git.ruby-lang.org/ruby.git/commit/?id=f5248f6f50 From f5248f6f504701960a2bbb7a51117060f7d66613 Mon Sep 17 00:00:00 2001 From: Hiroshi SHIBATA <hsbt@r...> Date: Fri, 9 Aug 2019 16:20:50 +0900 Subject: [rubygems/rubygems] Added the initial workflow file. https://github.com/rubygems/rubygems/commit/6405a1e51a diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml new file mode 100644 index 0000000..0811209 --- /dev/null +++ b/.github/workflows/workflow.yml @@ -0,0 +1,29 @@ https://github.com/ruby/ruby/blob/trunk/.github/workflows/workflow.yml#L1 +on: pull_request + +jobs: + macos: + name: rake test + runs-on: macos-latest + strategy: + matrix: + ruby: [ '2.3.x', '2.4.x', '2.5.x', '2.6.x' ] + steps: + - name: Disable Firewall + run: | + sudo /usr/libexec/ApplicationFirewall/socketfilterfw --setglobalstate off + sudo /usr/libexec/ApplicationFirewall/socketfilterfw --getglobalstate + - name: Checkout + uses: actions/checkout@master + with: + fetch-depth: 5 + - name: Setup ruby + uses: actions/setup-ruby@v1 + with: + version: ${{ matrix.ruby }} + architecture: 'x64' + - name: Install Dependencies + run: util/ci.sh before_script + - name: Run Test + run: util/ci.sh script + env: + TEST_TOOL: "rubygems" -- cgit v0.10.2 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/