v2 Prep: Add Swagger UI v4 and v5 (#73) #603
Workflow file for this run
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
name: Continuous Integration | |
on: | |
pull_request: | |
branches: | |
- master | |
push: | |
schedule: | |
- cron: "00 09 * * *" | |
jobs: | |
static_checks: | |
name: Static Checks | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Worker | |
run: ci/scripts/setup_worker.sh | |
- name: Build Package and Verify | |
run: ci/scripts/build.sh | |
- name: Perform Static Code Analysis | |
run: ci/scripts/codescan.sh | |
unit_tests: | |
name: Unit Tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Worker | |
run: ci/scripts/setup_worker.sh | |
- name: Build Package and Verify | |
run: ci/scripts/build.sh | |
- name: Run Unit Tests | |
run: ci/scripts/test_runner.sh | |
- name: Upload Test Report | |
if: ${{ always() }} | |
uses: actions/upload-artifact@v2 | |
with: | |
name: unit-test-report | |
path: | | |
/home/runner/work/Flask-OpenAPI/Flask-OpenAPI/ci/tests/report.xml | |
/home/runner/work/Flask-OpenAPI/Flask-OpenAPI/ci/tests/coverage.xml | |
/home/runner/work/Flask-OpenAPI/Flask-OpenAPI/ci/tests/pytest.log | |
if-no-files-found: ignore | |
retention-days: 1 |