meta icon indicating copy to clipboard operation
meta copied to clipboard

🦀 GitHub Actions for Rust - recipes, discussions, questions and ideas

Results 28 meta issues
Sort by recently updated
recently updated
newest added

## Note Sorry, it's not a feature request or a bug report. It is just for a meta-discussion topic. ## Checklists Do the checklist before filing an issue: * [x]...

enhancement

Do the checklist before filing an issue: * [x] Is this related to the `actions-rs` Actions? If you think it's a problem related to Github Actions in general, use GitHub...

enhancement

This is currently possible by installing the necessary components and first running `cargo install xargo`, but caching would be particularly useful here as xargo has to be built and then...

Use https://github.com/est31/cargo-udeps to check if all dependencies are used

Can't fetch private Github repos when running actions (declared similarly to [here](https://github.com/manuelmauro/algonaut/blob/main/.github/workflows/quickstart.yml) note: this is not the the repo with the private deps): ``` failed to get `x` as a...

enhancement

Hi ! Thanks for all the actions :) Would be amazing to have a `release` action that would 1) build and test everything 2) bump the version 3) tag in...

### Discussed in https://github.com/actions-rs/meta/discussions/41 Originally posted by **gluax** July 9, 2021 Hey all. Has anyone else been having an issue with cargo from action-rs? Our pipelines will fail at random...

@yaahc proposed an idea to add Action with [semverver](https://github.com/rust-dev-tools/rust-semverver) tool. So far there are two possible options to use it: 1. Same to other `*-check` Actions, execute it `on: [push,...

There are two things that can be improved with caching added: 1. Cache `target/` and Cargo folders (see [an example](https://github.com/actions/cache/blob/master/examples.md#rust---cargo)) 2. Cache the compiled binary from the `cargo install {pkgid}`...

enhancement