From 2e1e833eb2c56043f686f22d32655ddb199208b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kamil=20Krzy=C5=9Bk=C3=B3w?= Date: Sat, 21 Sep 2024 04:11:07 +0200 Subject: [PATCH] ci: add initial dev tests --- .github/workflows/test_dev.yml | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .github/workflows/test_dev.yml diff --git a/.github/workflows/test_dev.yml b/.github/workflows/test_dev.yml new file mode 100644 index 0000000..56d7823 --- /dev/null +++ b/.github/workflows/test_dev.yml @@ -0,0 +1,33 @@ +name: test-dev + +on: + push: + branches: + - dev + workflow_dispatch: {} + +jobs: + style-check: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 + with: + python-version: 3 + cache: pip + - run: pip install isort black + - run: isort mkdocs_nype/ --check + - run: black mkdocs_nype/ --check + check-repos: + needs: style-check + runs-on: ubuntu-latest + strategy: + matrix: + repo: + - https://github.com/nypesap/nypesap.github.io.git + - https://github.com/Fiori-Tracker/fioritracker.github.io.git + - https://github.com/fioriappsusage/fioriappsusage.github.io.git + - https://github.com/fioriroletesting/fioriroletesting.github.io.git + steps: + - uses: actions/checkout@v4 + - run: echo "${{ matrix.repo }}" \ No newline at end of file