Make map interaction only work when the curser is not over an egui wi… #21
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: Rust | |
on: [push] | |
jobs: | |
build-vulkan: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
rust: [stable, nightly] | |
steps: | |
- uses: hecrj/setup-rust-action@v1 | |
with: | |
rust-version: ${{ matrix.rust }} | |
- uses: actions/checkout@master | |
- name: Build lib | |
run: cargo build --verbose --lib | |
- name: Build bin | |
run: cargo build --verbose --bin sailor | |
# - name: Run tests lib | |
# run: cargo test --verbose --lib | |
# - name: Run tests bin | |
# run: cargo test --verbose --bin sailor | |
build-metal: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macOS-latest] | |
rust: [stable, nightly] | |
steps: | |
- uses: hecrj/setup-rust-action@v1 | |
with: | |
rust-version: ${{ matrix.rust }} | |
- uses: actions/checkout@master | |
- name: Build lib | |
run: cargo build --verbose --lib --no-default-features --features metal | |
- name: Build bin | |
run: cargo build --verbose --bin sailor --no-default-features --features metal | |
# - name: Run tests lib | |
# run: cargo test --verbose --lib | |
# - name: Run tests bin | |
# run: cargo test --verbose --bin sailor | |