Update develop branch with progress #42
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: compliance tasks | |
| on: | |
| push: | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| reuse: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - name: REUSE Compliance check | |
| uses: fsfe/reuse-action@v6.0.0 | |
| openapi: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - name: Setup python | |
| uses: actions/setup-python@v4 | |
| - name: Install validator | |
| run: pip install openapi-spec-validator | |
| - name: OpenAPI Compliance check | |
| working-directory: ${{ github.workspace }} | |
| run: openapi-spec-validator openapi.yaml |