Skip to content

Install cargo-lambda using pip3 so it also installs zig #4

Install cargo-lambda using pip3 so it also installs zig

Install cargo-lambda using pip3 so it also installs zig #4

Workflow file for this run

name: CD
on:
push:
branches:
- main
paths:
- 'infrastructure/**'
- 'src/**'
- 'scripts/**'
jobs:
deploy:
name: Deploy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Build Lambda functions
run: python3 ./scripts/build.py
- name: Plan Terraform
run: terraform plan
- name: Apply Terraform
run: terraform apply