Skip to content

Commit

Permalink
refactor: use ubuntu for testing (#20)
Browse files Browse the repository at this point in the history
* refactor: use ubuntu for testing

* fix: docs import comment
  • Loading branch information
cs50victor authored Feb 16, 2024
1 parent e50c550 commit 94fbf55
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
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

0 comments on commit 94fbf55

Please sign in to comment.