summaryrefslogtreecommitdiff
path: root/.github/workflows/macos.yml
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2019-08-11 07:56:17 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2019-08-11 07:56:17 +0900
commit608c0f417b79d2106f5797859420af71861a8a76 (patch)
tree6846a15f52740da38cf074d87d30ff500a072edd /.github/workflows/macos.yml
parent82356236453f6923050d0fb71a5839738e539162 (diff)
downloadpsych-608c0f417b79d2106f5797859420af71861a8a76.zip
Try to use GitHub Actions
Diffstat (limited to '.github/workflows/macos.yml')
-rw-r--r--.github/workflows/macos.yml15
1 files changed, 15 insertions, 0 deletions
diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml
new file mode 100644
index 0000000..e161bdd
--- /dev/null
+++ b/.github/workflows/macos.yml
@@ -0,0 +1,15 @@
+name: macos
+
+on: [push]
+
+jobs:
+ build:
+ runs-on: macos-latest
+ steps:
+ - uses: actions/checkout@master
+ - name: Install dependencies
+ run: |
+ gem install bundler --no-document
+ bundle install
+ - name: Run test
+ run: rake