feat:point scene #183
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: RustLinux | |
on: | |
push: | |
branches: ["main", "dev"] | |
pull_request: | |
branches: ["main", "dev"] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Config Env | |
run: rustup install nightly && rustup default nightly && rustup component add rustfmt | |
- name: Build | |
run: cd gdrust && cargo build --package proto --features protobuf_feature --all | |
- name: Build Release | |
run: cd gdrust && cargo build --package proto --features protobuf_feature --all --release | |
- name: Run tests Debug | |
run: cd gdrust && cargo test --package proto --features protobuf_feature --all | |
- name: Run tests Release | |
run: cd gdrust && cargo test --package proto --features protobuf_feature --all --release | |
- name: Check Fmt | |
run: cd gdrust && cargo fmt -- --check |