Bump google-protobuf from 3.25.2 to 3.25.5 #894
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and Verify | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: "3.2" | |
bundler-cache: true | |
- name: build | |
run: bundle exec jekyll build | |
- name: check output | |
run: | | |
bundle exec htmlproofer ./_site \ | |
--allow-hash-href \ | |
--checks Images Scripts Links\ | |
--only-4xx \ | |
--disable-external \ | |
--ignore-empty-alt true |