Bump _includes/liboqs from f4b9622
to 38725ba
#18
Workflow file for this run
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 Jekyll site | |
on: | |
push | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # pin@v4 | |
- name: Pull liboqs submodule | |
run: git submodule update --init | |
- name: Setup Ruby | |
# https://github.com/ruby/setup-ruby/releases/tag/v1.207.0 | |
uses: ruby/setup-ruby@4a9ddd6f338a97768b8006bf671dfbad383215f4 | |
with: | |
ruby-version: '3.3.6' # Not needed with a .ruby-version file | |
bundler-cache: true # runs 'bundle install' and caches installed gems automatically | |
cache-version: 0 # Increment this number if you need to re-download cached gems | |
- name: Build with Jekyll | |
run: bundle exec jekyll build |