mirror of
https://github.com/emilk/egui.git
synced 2026-06-27 07:03:14 -04:00
As cargo machete now uses rust edition2024 we cannot use the older rust version - we need to install the newest on the runner * [ ] I have followed the instructions in the PR template --------- Co-authored-by: lucasmerlin <lucasmeurer96@gmail.com>
19 lines
391 B
YAML
19 lines
391 B
YAML
name: Cargo Machete
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
cargo-machete:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: dtolnay/rust-toolchain@master
|
|
with:
|
|
toolchain: 1.85
|
|
- name: Machete install
|
|
run: cargo install cargo-machete --locked
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
- name: Machete Check
|
|
run: cargo machete
|
|
|