Add files via upload

This commit is contained in:
cactuzhead 2025-05-11 19:39:22 +01:00 committed by GitHub
parent 4bb805c9f3
commit b24d70ed24
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 36 additions and 0 deletions

22
docs/ci.yml Normal file
View file

@ -0,0 +1,22 @@
name: CI
on:
push:
branches: ["main"]
pull_request:
jobs:
# Build job
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.3' # 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
- name: Build with Jekyll
run: bundle exec jekyll build

14
docs/dependabot.yml Normal file
View file

@ -0,0 +1,14 @@
version: 2
updates:
- package-ecosystem: bundler
directory: /
schedule:
interval: daily
allow:
- dependency-type: direct
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: daily
time: "10:00"
open-pull-requests-limit: 10