Skip to content

Commit

Permalink
fix PR build
Browse files Browse the repository at this point in the history
  • Loading branch information
devksingh4 committed Feb 7, 2024
1 parent 49b00de commit 796ab47
Showing 1 changed file with 16 additions and 4 deletions.
20 changes: 16 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,19 @@ jobs:
uses: actions/checkout@v4
with:
submodules: 'true'
- name: Build docker image
run: docker build -t local < Dockerfile.devel
- name: Test build
run: docker run -it local make build
- name: Setup Ruby
uses: ruby/setup-ruby@v1 # v1.161.0
with:
ruby-version: '3.1' # Not needed with a .ruby-version file
cache-version: 0 # Increment this number if you need to re-download cached gems
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '18.x'
- name: Setup Pages
id: pages
uses: actions/configure-pages@v4
- name: Install
run: make install
- name: Build with Jekyll
run: make build

0 comments on commit 796ab47

Please sign in to comment.