summaryrefslogtreecommitdiff
path: root/.github/workflows/macos.yml
blob: e161bdd4f3b68418ddb660c421c0a8803cb0d4a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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