Skip to content

feat: game config editor, monaco #4

feat: game config editor, monaco

feat: game config editor, monaco #4

Workflow file for this run

# yaml-language-server: $schema=https://json.schemastore.org/github-workflow
name: Build Gateway
on:
push:
branches: [ "main" ]
paths: [ "gateway/**" ]
pull_request:
branches: [ "main" ]
paths: [ "gateway/**" ]
env:
CARGO_TERM_COLOR: always
defaults:
run:
working-directory: ./gateway
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Rust
uses: dtolnay/rust-toolchain@stable
- name: Setup Rust cache
uses: Swatinem/rust-cache@v2
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose