diff --git a/.github/workflows/oaf-check.yml b/.github/workflows/oaf-check.yml new file mode 100644 index 00000000..720a2064 --- /dev/null +++ b/.github/workflows/oaf-check.yml @@ -0,0 +1,23 @@ +name: Check Open API Framework Version + +on: + workflow_dispatch: + schedule: + - cron: '36 0 * * 0' + +jobs: + run: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 + with: + python-version: '3.11' + - name: Install dependencies + run: pip install -U pip-tools + - name: Run compile dependencies + run: ./bin/compile_dependencies.sh --upgrade-package open-api-framework + + - name: Check git diff + run: git diff --exit-code -- requirements/*.txt