Skip to content

增加rabbitmq和github webhook #28

增加rabbitmq和github webhook

增加rabbitmq和github webhook #28

Workflow file for this run

name: Build Server
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- beta
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.rust }}
override: true
components: rustfmt, clippy
- uses: actions-rs/cargo@v1
with:
command: build
args: --release --package rust_server --bin rust_server
- uses: actions-rs/cargo@v1
with:
command: test