Skip to content

Commit

Permalink
Merge pull request #24 from Homebrew/github-actions-ci
Browse files Browse the repository at this point in the history
GitHub Actions CI
  • Loading branch information
MikeMcQuaid authored Aug 14, 2019
2 parents 4505390 + 471a6e0 commit a024a8a
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 19 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: GitHub Actions CI
on: [push]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Set up Git repository
uses: actions/checkout@master

- name: Set up Ruby
uses: actions/setup-ruby@v1
with:
version: '>=2.3'

- name: Install RubyGems
run: |
gem install bundler
bundle install --jobs 4 --retry 3
- name: Generate site
run: bundle exec rake yard build
19 changes: 0 additions & 19 deletions azure-pipelines.yml

This file was deleted.

0 comments on commit a024a8a

Please sign in to comment.