* Update bevy 0.15 * Removed unused import "AsyncReadExt" * Update README.md * Update lib.rs * Update README.md * Fix cargo test by not running examples that never end in lib.rs * get rid of warnings * update version references * dont run examples * deny warnings * remove obsolete runners --------- Co-authored-by: Jarosław Konik <konikjar@gmail.com>
24 lines
465 B
YAML
24 lines
465 B
YAML
name: Rust
|
|
|
|
on:
|
|
push:
|
|
branches: [ "main" ]
|
|
pull_request:
|
|
branches: [ "main" ]
|
|
|
|
env:
|
|
CARGO_TERM_COLOR: always
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
RUSTFLAGS: -D warnings
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Clippy
|
|
run: cargo clippy --all-features --verbose -- -D warnings
|
|
- name: Build
|
|
run: cargo build --all-features --verbose
|
|
- name: Run tests
|
|
run: cargo test --all-features --verbose
|