Skip to content
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
8 changes: 4 additions & 4 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ env:
CARGO_TERM_COLOR: always
jobs:
test:
runs-on: [self-hosted, Linux]
runs-on: ubuntu-latest
timeout-minutes: 10
name: ⚙️ test (ubuntu)
steps:
Expand All @@ -30,7 +30,7 @@ jobs:
# Not using `--all-targets`, to get doctests everywhere.
run: cargo test --locked --workspace --all-features -- --skip skipci
fmt:
runs-on: [self-hosted, Linux]
runs-on: ubuntu-latest
timeout-minutes: 10
name: 🖋️ fmt
steps:
Expand All @@ -42,7 +42,7 @@ jobs:
- name: cargo fmt --check
run: cargo fmt --check
clippy:
runs-on: [self-hosted, Linux]
runs-on: ubuntu-latest
timeout-minutes: 10
name: 📋 clippy
permissions:
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
# run docs generation on nightly rather than stable. This enables features like
# https://doc.rust-lang.org/beta/unstable-book/language-features/doc-cfg.html which allows an
# API be documented as only available in some specific platforms.
runs-on: [self-hosted, Linux]
runs-on: ubuntu-latest
timeout-minutes: 10
name: 📖 doc
steps:
Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,4 +83,3 @@ Find a crate do help you with that and log the location and velocity to CSV file
- [ ] Show 3 ways of seeing rustdoc
- [ ] Rand as google/llm exercise
- [ ] tracing

Loading