mirror of
https://github.com/emilk/egui.git
synced 2026-06-27 15:13:12 -04:00
* [x] I have followed the instructions in the PR template cargo machete depends on cargo-platform which seems to bumped it's msrv. Installing via --locked should fix this for now. I think it's fine to do this manually instead of using the cargo action since it's so simple and the action we used basically did the same (without --locked)
13 lines
254 B
YAML
13 lines
254 B
YAML
name: Cargo Machete
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
cargo-machete:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
- name: Machete
|
|
run: cargo install cargo-machete --locked && cargo machete
|