Skip to content

Update jekyll-docker.yml #304

Update jekyll-docker.yml

Update jekyll-docker.yml #304

Workflow file for this run

name: Jekyll site CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Build the site in the jekyll/builder container
run:
docker run

Check failure on line 18 in .github/workflows/jekyll-docker.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/jekyll-docker.yml

Invalid workflow file

You have an error in your yaml syntax on line 18
- name: Test
on: [push, pull_request]
permissions:
contents: read
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install bats
run: git clone --depth 1 https://github.com/sstephenson/bats.git
- name: Run tests
run: PATH="./bats/bin:$PATH" script/test
- name: Verify download URL checksums
if: github.event_name == 'pull_request'
run: ./script/mirror verify "$COMMIT_RANGE"
env:
COMMIT_RANGE: ${{ github.event.pull_request.base.sha }}..