Cors #12
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Gateway CI | |
on: | |
pull_request: | |
jobs: | |
Test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v3 | |
- name: Install Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: 1.69.0 | |
override: true | |
- name: Build local | |
run: cargo build -F local | |
working-directory: ./gateway | |
- name: Test local | |
run: cargo test -F local | |
working-directory: ./gateway | |
- name: Build release | |
run: cargo build | |
working-directory: ./gateway | |
- name: Test release | |
run: cargo test | |
working-directory: ./gateway | |