Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: use ubuntu for testing #20

Merged
merged 2 commits into from
Feb 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci-rs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ concurrency:

jobs:
ci-rs:
runs-on: [ macos-latest, ubuntu-latest]
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
Expand All @@ -49,7 +49,7 @@ jobs:
run: cargo build --release --features docker

- name: Test
run: cargo test --release
run: cargo test --release --features docker

- name: Lint
run: cargo fmt --all -- --check
Expand Down
4 changes: 2 additions & 2 deletions crates/bevy_remote_asset/src/web_asset_plugin.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ use bevy::prelude::*;
use crate::web_asset_source::*;
use bevy::asset::io::AssetSource;

/// Add this plugin to bevy to support loading http and https urls.
/// Add this plugin to bevy to support loading https urls.
///
/// Needs to be added before Bevy's `DefaultPlugins`.
///
/// # Example
///
/// ```no_run
/// # use bevy::prelude::*;
/// # use bevy_web_asset::WebAssetPlugin;
/// # use bevy_remote_asset::WebAssetPlugin;
///
/// let mut app = App::new();
///
Expand Down
2 changes: 1 addition & 1 deletion new_media/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "new_media"
version = "0.0.1"
edition = "2021"
rust.workspace = true

default-run = "new_media"

[dependencies]
Expand Down
Loading