You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 13, 2023. It is now read-only.
Is this related to the actions-rs Actions?
If you think it's a problem related to Github Actions in general, use GitHub Community forum instead: https://github.community
Is this something you can debug and fix? Send a pull request! Bug fixes and documentation fixes are welcome.
Motivation
I have a monorepo with various languages, rust included, at different levels. I don't see how the actions should be used in this case. My brute force approach is to define a Makefile target that recurses my repo like this,
SUBDIRS = $(dir$(shell find . -name Cargo.toml))test-rust:
for dir in $(SUBDIRS); do ( cd $$dir && cargo test --verbose); done
... and then call make test-rust from the GH action, after setting up the environment. This seems hacky.
Workflow example
/shrug -- I'm thinking there should be a --recursive-find-crate sort of option.
Additional context
There are existing discussions around pointing to one particular workspace or crate: #27 and #28 which seem germane but don't solve my problem.