Incorporated API generation into CI workflow and fixed 'generate' nox session (#660)

Signed-off-by: saimedhi <saimedhi@amazon.com>
This commit is contained in:
Sai Medhini Reddy Maryada
2024-01-24 14:46:18 -08:00
committed by GitHub
parent 6e58837993
commit 900ea94ec8
11 changed files with 164 additions and 10 deletions
+15
View File
@@ -18,6 +18,21 @@ jobs:
python3.7 -m pip install nox
- name: Lint the code
run: nox -s lint
generate:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Set up Python 3.7
uses: actions/setup-python@v4
with:
python-version: 3.7
- name: Install dependencies
run: |
python3.7 -m pip install nox
- name: Run the api generator
run: nox -s generate
test-build-distribution:
runs-on: ubuntu-latest