add initial proof of concept of watch mode #10
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: CI | |
on: | |
pull_request: | |
push: | |
branches: ["master"] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Setup Rust toolchain | |
run: rustup default stable | |
- name: Build | |
run: cargo build --locked --verbose | |
# - name: Run tests | |
# run: cargo test --locked --verbose | |
- name: Rustfmt and Clippy | |
run: | | |
cargo fmt -- --check | |
cargo clippy | |
test: | |
runs-on: self-hosted | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Setup Rust toolchain | |
run: rustup default stable | |
- uses: ok-nick/[email protected] | |
- name: Install aftman tools | |
run: aftman install | |
- name: Build run-in-roblox plugin | |
run: cd plugin && lune build.lua | |
- name: Build | |
run: cargo build --locked --verbose | |
- name: Run example script | |
run: cargo run -- run --script ./demo/hello.lua --universe-id 28220420 --place-id 95206881 --oneshot |