Skip to content

Commit

Permalink
Merge pull request #92 from fhir-crucible/github-actions
Browse files Browse the repository at this point in the history
Use github actions.
  • Loading branch information
radamson authored Jun 24, 2021
2 parents 980f305 + ac1ac91 commit d7a4554
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 22 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Ruby

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ['2.6', '2.7']

steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: Run tests
run: bundle exec rake
- name: Rubocop
run: bundle exec rubocop
22 changes: 0 additions & 22 deletions .travis.yml

This file was deleted.

0 comments on commit d7a4554

Please sign in to comment.