Skip to content

Commit 7b309a3

Browse files
authored
Merge pull request #195 from sjrd/migrate-to-github-actions
Fix #194: Migrate to GitHub Actions.
2 parents 4ab44d4 + 05f9520 commit 7b309a3

File tree

2 files changed

+28
-20
lines changed

2 files changed

+28
-20
lines changed

.github/workflows/ci.yml

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
branches:
9+
- main
10+
11+
jobs:
12+
build:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v2
16+
- uses: ruby/setup-ruby@v1
17+
with:
18+
ruby-version: '2.6.6'
19+
bundler-cache: true
20+
- name: Bower
21+
run: |
22+
npm install -g bower
23+
bower install
24+
- name: Build site
25+
run: |
26+
bundle exec jekyll build 2> error.log
27+
cat >&2 error.log
28+
( ! grep -qie Error -e Warn error.log )

.travis.yml

-20
This file was deleted.

0 commit comments

Comments
 (0)