Skip to content

Commit

Permalink
Lets see if this works
Browse files Browse the repository at this point in the history
  • Loading branch information
tenderlove committed Sep 18, 2019
1 parent 4f736a5 commit df9c4ad
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/macos.yml
@@ -0,0 +1,26 @@
name: macos
on:
push:
branches:
- master
pull_request:
branches:
- '*'

jobs:
latest:
runs-on: macos-latest
steps:
- uses: actions/checkout@master
- uses: actions/setup-ruby@v1
with:
ruby-version: '2.6.4'
- name: Set ENV
run: |
echo '##[set-env name=MAKEFLAGS]'-j$((1 + $(sysctl -n hw.activecpu)))
- name: Install dependencies
run: |
sudo gem install bundler -v '1.17.3'
bundle install -j8
- run: rake compile
- run: rake test

0 comments on commit df9c4ad

Please sign in to comment.