1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

[rubygems/rubygems] Added the initial workflow file.

6405a1e51a
This commit is contained in:
Hiroshi SHIBATA 2019-08-09 16:20:50 +09:00
parent 5c872b297c
commit f5248f6f50
No known key found for this signature in database
GPG key ID: F9CF13417264FAC2

29
.github/workflows/workflow.yml vendored Normal file
View file

@ -0,0 +1,29 @@
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"