Skip to content

Enhance logger and lambda examples #80

Enhance logger and lambda examples

Enhance logger and lambda examples #80

Workflow file for this run

---
# This workflow is to verify build only
name: build
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
name: Build checks and coveralls
runs-on: ubuntu-latest
env:
AWS_DEFAULT_REGION: "us-west-2"
AWS_ACCOUNT: ${{ secrets.AWS_ACCOUNT }}
strategy:
matrix:
python-version: [3.9]
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
make setup
make setup-dev
- name: Lint
run: |
make lint
- name: Test
run: |
make test
- name: Build
run: |
make build
- name: Coveralls
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
COVERALLS_PARALLEL: true
run: |
coveralls --service=github
coveralls_finish:
name: Coveralls completion
needs: build
runs-on: ubuntu-latest
container: python:3-slim
steps:
- name: Coveralls Finished
run: |
pip3 install --upgrade coveralls
coveralls --service=github --finish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}