Skip to content

feat: alert no serverless anymore #227

feat: alert no serverless anymore

feat: alert no serverless anymore #227

Workflow file for this run

name: 🚀 Build API-Gateway
on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout ⬇️
uses: actions/checkout@v4.2.2
with:
show-progress: false
- name: Cache Dependencies 📦
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Copy Config File 📄
run: cp config.yaml.example config.yaml
- name: Build 🛠️
run: cargo build --verbose