Skip to content

Commit

Permalink
chore(ci): check-gateway.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
shirok1 authored Jan 29, 2024
1 parent 74d23b2 commit 32a0f18
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/check-gateway.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Check 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

0 comments on commit 32a0f18

Please sign in to comment.