From 96b27575d1151a11c5d937e85cf47b30890d50e0 Mon Sep 17 00:00:00 2001 From: Victor Seva Date: Wed, 28 Feb 2024 19:00:09 +0100 Subject: [PATCH] github: add support for github actions --- .github/workflows/build.yml | 22 ++++++++++++++++++++++ .github/workflows/dependabot.yml | 9 +++++++++ 2 files changed, 31 insertions(+) create mode 100644 .github/workflows/build.yml create mode 100644 .github/workflows/dependabot.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 00000000..019afeee --- /dev/null +++ b/.github/workflows/build.yml @@ -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 diff --git a/.github/workflows/dependabot.yml b/.github/workflows/dependabot.yml new file mode 100644 index 00000000..775cd546 --- /dev/null +++ b/.github/workflows/dependabot.yml @@ -0,0 +1,9 @@ +--- +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + commit-message: + prefix: "github: [skip ci]"