Skip to content

Commit c432045

Browse files
committed
Run GitHub Actions to check build
1 parent 85219b4 commit c432045

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

.github/workflows/main.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Continuous Integration
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- uses: actions/checkout@v1
11+
12+
- name: Setup Ruby
13+
uses: actions/setup-ruby@v1
14+
with:
15+
ruby-version: 2.6.x
16+
architecture: x64
17+
18+
- name: Install bundler and dependencies
19+
run: |
20+
gem install bundler
21+
bundle install --jobs 4 --retry 3
22+
23+
- name: Check build
24+
run: bundle exec jekyll build

0 commit comments

Comments
 (0)