Skip to content

refactor(ci): check-gateway.yml to build-gateway.yml #1

refactor(ci): check-gateway.yml to build-gateway.yml

refactor(ci): check-gateway.yml to build-gateway.yml #1

Workflow file for this run

name: Build Gateway
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
defaults:
run:
working-directory: ./gateway
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: install Rust stable
uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose