Skip to content

Merge pull request #160 from paxengine/ss/slot-particles #387

Merge pull request #160 from paxengine/ss/slot-particles

Merge pull request #160 from paxengine/ss/slot-particles #387

Workflow file for this run

name: Rust
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master", "dev" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
# Install dependencies
- name: Install dependencies
run: sudo apt update && sudo apt install -y libgtk-4-dev
- name: Run tests
run: cargo test --verbose --workspace --exclude pax-chassis-macos --exclude pax-chassis-common --exclude pax-chassis-ios
- name: Check formatting
run: cargo fmt -- --check
- name: Check for linting errors
run: |
rustup component add clippy
cargo clippy -- -D warnings