Removed build workflow

This commit is contained in:
Silas Bartha 2024-12-12 04:51:23 -05:00
parent 57827d5371
commit ca1ca672d3
2 changed files with 1 additions and 26 deletions

View File

@ -1,24 +0,0 @@
name: Rust
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Dependencies
run: sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev libudev-dev
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose

View File

@ -2,7 +2,6 @@
![License](https://img.shields.io/badge/license-0BSD%2FMIT%2FApache-blue.svg)
![Tag](https://img.shields.io/github/v/tag/exvacuum/bevy_basic_interaction)
![Build](https://img.shields.io/github/actions/workflow/status/exvacuum/bevy_basic_interaction/rust.yml)
This crate provides an `InteractionPlugin` which enables a basic interaction system.
@ -20,7 +19,7 @@ If enough people (like literally 1 person) want this on crates.io I'll consider
```toml
[dependencies.bevy_basic_interaction]
git = "https://github.com/exvacuum/bevy_basic_interaction"
git = "https://git.exvacuum.dev/bevy_basic_interaction"
```
## Usage