diff --git a/.github/workflows/deploy-pipeline.yaml b/.github/workflows/deploy-pipeline.yaml new file mode 100644 index 000000000..1b3ff75e2 --- /dev/null +++ b/.github/workflows/deploy-pipeline.yaml @@ -0,0 +1,75 @@ +name: Deploy Lambda Function +on: [push] + +jobs: + + lint: + runs-on: ubuntu-latest + steps: + - name: Check out code + uses: actions/checkout@v2 + - name: Set up Python + uses: actions/setup-python@v2 + with: + python-version: 3.8 + - name: Install libraries + run: pip install flake8 + - name: Lint with flake8 + run: | + cd function + flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics + flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics + + build: + runs-on: ubuntu-latest + needs: lint + steps: + - name: Check out code + uses: actions/checkout@v2 + - name: Set up Python + uses: actions/setup-python@v2 + with: + python-version: 3.8 + - name: Install libraries + run: | + cd function + python -m pip install --upgrade pip + if [ -f requirements.txt ]; then pip install -r requirements.txt -t .; fi + - name: Zip bundle + run: | + cd function + zip -r ../${{ github.sha }}.zip . + - name: Archive artifact + uses: actions/upload-artifact@v2 + with: + name: zipped-bundle + path: ${{ github.sha }}.zip + + publish: + runs-on: ubuntu-latest + needs: build + steps: + - name: Create release + id: create_release + uses: actions/create-release@v1 + env: + GITHUB_TOKEN: ${{ secrets.github_token }} # This token is provided by Actions, you do not need to create your own token + with: + tag_name: ${{ github.run_number }} + release_name: Release ${{ github.run_number }} + body: New release for ${{ github.sha }}. Release notes can be found in the docs. + draft: false + prerelease: false + - name: Download artifact + uses: actions/download-artifact@v2 + with: + name: zipped-bundle + - name: Upload release asset + uses: actions/upload-release-asset@v1 + env: + GITHUB_TOKEN: ${{ secrets.github_token }} + with: + upload_url: ${{ steps.create_release.outputs.upload_url }} + asset_path: ./${{ github.sha }}.zip + asset_name: source_code_with_libraries.zip + asset_content_type: application/zip diff --git a/function/lambda_function.py b/function/lambda_function.py index 2809ce09b..96a4f6afa 100644 --- a/function/lambda_function.py +++ b/function/lambda_function.py @@ -8,7 +8,7 @@ def lambda_handler(event, context): Returns: string: greeting response """ - print('Starting functions\n---------------------------------------------' + print('Starting functions\n---------------------------------------------') if event["input"] == "Hello": diff --git a/function/requirements.txt b/function/requirements.txt index 65a457e70..569d20bbe 100644 --- a/function/requirements.txt +++ b/function/requirements.txt @@ -1,2 +1,2 @@ -Github==1.55 +PyGithub==1.55 boto3==1.17.96 \ No newline at end of file diff --git a/userguide.md b/userguide.md new file mode 100644 index 000000000..71cc37841 --- /dev/null +++ b/userguide.md @@ -0,0 +1,20 @@ +# User Guide + +## Install + +Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. + +## Troubleshooting + +- Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. +- Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. +- Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. +- Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. + +## Contact us + +| Lorem | ipsum | dolor | +| ------------- |-------------| -----| +| Ut enim ad minim veniam | quis nostrud exercitation ullamco | laboris nisi ut aliquip ex ea commodo consequat | +| Duis aute irure | dolor in reprehenderit in | voluptate velit esse cillum dolore eu fugiat nulla pariatur | +| Excepteur sint occaecat | cupidatat non proident | sunt in culpa qui officia deserunt mollit anim id est laborum | \ No newline at end of file