Skip to content

blog: on testing confidence #24

blog: on testing confidence

blog: on testing confidence #24

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
fetch-depth: 0
- name: Init submodules
run: |
git submodule sync --recursive
git submodule update --init --recursive --depth 1
- name: Install Zola
uses: taiki-e/install-action@v2
with:
tool: zola
- name: Show Zola version
run: zola --version
- name: Validate site
run: zola check --skip-external-links
- name: Build site
run: zola build