Skip to content

Remove output.txt (duplicate) and hello.h (test file) from vscode/cpp directory #597

Remove output.txt (duplicate) and hello.h (test file) from vscode/cpp directory

Remove output.txt (duplicate) and hello.h (test file) from vscode/cpp directory #597

name: Build and Check
on:
push:
pull_request:
schedule:
- cron: "0 0 1 * *"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.1' # 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
working-directory: website
- name: Build with Jekyll
# Outputs to the './_site' directory by default
run: |
cd website
bundle exec jekyll build
env:
JEKYLL_ENV: production
check-links:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.1' # 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
working-directory: website
- name: Check links
run: cd website && (make check_links || make check_links || make check_links)