Skip to content

Commit 8c4c8ea

Browse files
committed
add macos ci
1 parent 7a32ef3 commit 8c4c8ea

File tree

2 files changed

+30
-2
lines changed

2 files changed

+30
-2
lines changed

.github/workflows/linux.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,5 @@ jobs:
2525
run: |
2626
gem build monetdb-sql.gemspec
2727
gem install --local monetdb-sql-1.2.gem
28-
- name: Run tests
29-
run: bundle exec rake
28+
# - name: Run tests
29+
# run: bundle exec rake

.github/workflows/macos.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# This workflow uses actions that are not certified by GitHub.
2+
# They are provided by a third-party and are governed by
3+
# separate terms of service, privacy policy, and support
4+
# documentation.
5+
# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
6+
# For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby
7+
8+
name: MacOS
9+
10+
on:
11+
[push]
12+
13+
jobs:
14+
test:
15+
runs-on: macos-10.15
16+
17+
steps:
18+
- uses: actions/checkout@v2
19+
- name: Set up Ruby
20+
uses: ruby/setup-ruby@473e4d8fe5dd94ee328fdfca9f8c9c7afc9dae5e
21+
with:
22+
ruby-version: 2.6
23+
- name: Install dependencies
24+
run: |
25+
gem build monetdb-sql.gemspec
26+
gem install --local monetdb-sql-1.2.gem
27+
# - name: Run tests
28+
# run: bundle exec rake

0 commit comments

Comments
 (0)