Skip to content

Bump actions/checkout from 3 to 4 #48

Bump actions/checkout from 3 to 4

Bump actions/checkout from 3 to 4 #48

Workflow file for this run

name: 'Pull'
on:
- pull_request
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 360
name: 'Build'
strategy:
matrix:
env:
- jekyll:latest
- builder:latest
- minimal:latest
- jekyll:pages
steps:
- uses: actions/checkout@v4
- uses: actions/setup-ruby@v1
with:
ruby-version: '2.x'
- run: bundle install
- run: |
echo $'{\n "experimental": true\n}' | \
sudo tee /etc/docker/daemon.json
sudo systemctl restart docker
name: 'docker experimental'
- run: docker-template build $DOCKER_REPO --no-push --force --squash
env:
RUBYOPT: "-W0"
DOCKER_REPO: "${{join(matrix.env, ' ')}}"