We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d6f72d3 commit c2cd9dfCopy full SHA for c2cd9df
1 file changed
.github/workflows/test-build.yml
@@ -1,5 +1,5 @@
1
-# .github/workflows/jekyll-build.yml
2
-name: Build and Test Site
+# .github/workflows/test-build.yml
+name: Build and Test Jekyll Site
3
4
on:
5
push:
@@ -18,14 +18,14 @@ jobs:
18
- name: Setup Ruby
19
uses: ruby/setup-ruby@v1
20
with:
21
- ruby-version: '3.1'
+ ruby-version: '3.1' # Match what you are using locally (adjust if needed)
22
bundler-cache: true
23
24
- name: Install dependencies
25
run: bundle install
26
27
- name: Build site
28
- run: bundle exec jekyll build
+ run: bundle exec jekyll build --trace
29
30
- name: Test successful build
31
run: test -d _site
0 commit comments