Skip to content

Commit

Permalink
ci: add initial dev tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilkrzyskow committed Sep 21, 2024
1 parent 1d7cd67 commit 2e1e833
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/test_dev.yml
Original file line number Diff line number Diff line change
@@ -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 }}"

0 comments on commit 2e1e833

Please sign in to comment.