-
-
Notifications
You must be signed in to change notification settings - Fork 5
Figure out CI #2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Labels
wontfix
This will not be worked on
Comments
I'm going to use a Used GPT chat to help write this bash script: # Recursively search for Justfiles and run just against each one
# Use the find command to search for Justfiles in the current directory and its subdirectories
justfiles=$(find . -name "Justfile")
echo $justfiles
# Save the current directory so we can change back to it later
orig_dir=$(pwd)
# Loop through each Justfile
for justfile in $justfiles; do
# Get the directory containing the Justfile
dir=$(dirname $justfile)
# Change to the directory containing the Justfile
pushd $dir
# Run just without any arguments
just
# Change back to the original directory
popd
done
# Change back to the original directory
cd $orig_dir |
simonw
added a commit
that referenced
this issue
Dec 1, 2022
simonw
added a commit
that referenced
this issue
Dec 3, 2022
I'm fine with my |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Would be great to have GitHub Actions run tests against all of my code on every commit.
Not sure how to do this in Rust though. Might need be to use Cargo?
The text was updated successfully, but these errors were encountered: