Skip to content

Commit

Permalink
github: add support for github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
linuxmaniac committed Feb 28, 2024
1 parent 20fe44f commit 96b2757
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
name: checks_build
on:
push:
branches:
- main
pull_request:
branches:
- main
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
check-format:
runs-on: ubuntu-latest
permissions:
contents: read # to fetch code (actions/checkout)
steps:
- uses: actions/checkout@v4
- name: Build
uses: Tiryoh/actions-mkdocs@v0
with:
configfile: fmt/mkdocs/mkdocs.yml
9 changes: 9 additions & 0 deletions .github/workflows/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
commit-message:
prefix: "github: [skip ci]"

0 comments on commit 96b2757

Please sign in to comment.