Skip to content

tweak: allow large group image #609

tweak: allow large group image

tweak: allow large group image #609

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
name: Test and Build Site
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: 3
bundler-cache: true
- uses: actions/setup-python@v2
with:
python-version: '3.x'
- uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- run: python -m pip install -r requirements.txt
- run: make -j build
- run: make -j test
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: _site/
# Deployment job
deploy:
if: ${{ github.ref == 'refs/heads/main' }}
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4