Skip to content

feat: touch input ๐Ÿ–๐Ÿผ๏ธ #61

feat: touch input ๐Ÿ–๐Ÿผ๏ธ

feat: touch input ๐Ÿ–๐Ÿผ๏ธ #61

Workflow file for this run

name: test
#ย Based on https://github.com/bevyengine/bevy_github_ci_template/blob/main/.github/workflows/ci.yaml
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
CARGO_TERM_COLOR: always
jobs:
test:
name: Cargo test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Remove debug config
run: rm -f .cargo/config.toml
- name: Cache
uses: actions/cache@v3
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-test-${{ hashFiles('**/Cargo.toml') }}
- name: Install rust
uses: dtolnay/rust-toolchain@nightly
- name: Install dependencies
run: sudo apt-get update; sudo apt-get install pkg-config libx11-dev libasound2-dev libudev-dev libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev protobuf-compiler libprotobuf-dev
- name: Cargo test
run: cargo test
clippy_check:
name: Cargo clippy and fmt
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Remove debug config
run: rm -f .cargo/config.toml
- name: Cache
uses: actions/cache@v3
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-clippy-${{ hashFiles('**/Cargo.toml') }}
- name: Install rust
uses: dtolnay/rust-toolchain@nightly
with:
components: rustfmt, clippy
- name: Install dependencies
run: sudo apt-get update; sudo apt-get install pkg-config libx11-dev libasound2-dev libudev-dev protobuf-compiler libprotobuf-dev
- name: Run clippy
run: cargo clippy -- -D warnings
- name: Run fmt
run: cargo fmt --all -- --check