Skip to content

Commit

Permalink
GitHub Actions CI
Browse files Browse the repository at this point in the history
Try to setup GitHub Actions CI.
  • Loading branch information
MikeMcQuaid committed Aug 14, 2019
1 parent 4505390 commit 471a6e0
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 471a6e0

Please sign in to comment.