-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
1 changed file
with
62 additions
and
8 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ on: | |
|
||
jobs: | ||
build: | ||
name: Run Spectral | ||
name: Build OpenAPI document for pygeoapi configuration and addicted security | ||
runs-on: ubuntu-latest | ||
steps: | ||
# Check out the repository | ||
|
@@ -33,24 +33,78 @@ jobs: | |
poetry install | ||
poetry run fastgeoapi openapi | ||
spectral-oas: | ||
runs-on: ubuntu-latest | ||
needs: build | ||
steps: | ||
# Check out the repository | ||
- name: Check out the repository | ||
uses: actions/[email protected] | ||
|
||
- name: Set up Python 3.10 | ||
uses: actions/[email protected] | ||
with: | ||
python-version: "3.10" | ||
|
||
- name: Upgrade pip | ||
run: | | ||
pip install --constraint=.github/workflows/constraints.txt pip | ||
pip --version | ||
- name: Install Poetry | ||
run: | | ||
pipx install --pip-args=--constraint=.github/workflows/constraints.txt poetry | ||
poetry --version | ||
- name: Install fastgeoapi CLI | ||
run: | | ||
poetry install | ||
poetry run fastgeoapi openapi | ||
# Create OAS3 ruleset | ||
- name: Create OAS 3 | ||
run: | | ||
echo 'extends: ["spectral:oas"]' > .spectral.oas3.yaml | ||
# Create OWASP API Security 10 ruleset | ||
- name: Create OWASP API Security 10 | ||
run: | | ||
npm install -g @stoplight/spectral-owasp-ruleset@latest | ||
echo 'extends: ["https://unpkg.com/@stoplight/spectral-owasp-ruleset/dist/ruleset.mjs"]' > .spectral.owasp-top-10.yaml | ||
# Run Spectral for OWASP Top 10 | ||
# Run Spectral for OAS3 | ||
- name: Run Spectral for OAS3 | ||
uses: stoplightio/spectral-action@latest | ||
with: | ||
file_glob: "pygeoapi-openapi.json" | ||
spectral_ruleset: ".spectral.oas3.yaml" | ||
|
||
spectral-owasp: | ||
runs-on: ubuntu-latest | ||
needs: build | ||
steps: | ||
# Check out the repository | ||
- name: Check out the repository | ||
uses: actions/[email protected] | ||
|
||
- name: Set up Python 3.10 | ||
uses: actions/[email protected] | ||
with: | ||
python-version: "3.10" | ||
|
||
- name: Upgrade pip | ||
run: | | ||
pip install --constraint=.github/workflows/constraints.txt pip | ||
pip --version | ||
- name: Install Poetry | ||
run: | | ||
pipx install --pip-args=--constraint=.github/workflows/constraints.txt poetry | ||
poetry --version | ||
- name: Install fastgeoapi CLI | ||
run: | | ||
poetry install | ||
poetry run fastgeoapi openapi | ||
# Create OWASP API Security 10 ruleset | ||
- name: Create OWASP API Security 10 | ||
run: | | ||
npm install -g @stoplight/spectral-owasp-ruleset@latest | ||
echo 'extends: ["https://unpkg.com/@stoplight/spectral-owasp-ruleset/dist/ruleset.mjs"]' > .spectral.owasp-top-10.yaml | ||
# Run Spectral for OWASP Top 10 | ||
- name: Run Spectral for OWASP top 10 | ||
uses: stoplightio/spectral-action@latest | ||
|