Skip to content

Commit e637074

Browse files
committed
Switch to GHA
1 parent afa93d8 commit e637074

File tree

2 files changed

+25
-22
lines changed

2 files changed

+25
-22
lines changed

.github/workflows/ci.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: CI
2+
on:
3+
push:
4+
branches:
5+
- src
6+
7+
jobs:
8+
CI:
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- uses: actions/checkout@v2
13+
- uses: actions/setup-ruby@v1
14+
with:
15+
ruby-version: '2.7'
16+
17+
- run: bundle install && bundle exec jekyll build
18+
19+
- name: Deploy Docs
20+
uses: peaceiris/actions-gh-pages@364c31d33bb99327c77b3a5438a83a357a6729ad # v3.4.0
21+
with:
22+
github_token: ${{ secrets.GITHUB_TOKEN }}
23+
publish_branch: master
24+
publish_dir: _site
25+
force_orphan: true

.travis.yml

Lines changed: 0 additions & 22 deletions
This file was deleted.

0 commit comments

Comments
 (0)