Refactoring code generation: modularize providers, simplify manifest specs, reorganize crates #131
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: Verify Build | |
on: | |
pull_request: | |
branches: [ mainline, v0.4.0-beta ] | |
jobs: | |
build-lambda-default: | |
name: 'AWS Lambda Runtime' | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'Checkout' | |
uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: 'Build' | |
run: docker build -t assemblylift/asml-lambda-default . --file docker/asml-lambda-default | |
build-hyper-alpine: | |
name: 'Hyper Runtime' | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'Checkout' | |
uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: 'Build' | |
run: docker build -t assemblylift/asml-hyper-alpine . --file docker/asml-hyper-alpine |