From 727377dc647265640e06d4b65149e01518ffc685 Mon Sep 17 00:00:00 2001 From: Linus Oleander Date: Sun, 10 Dec 2023 03:06:07 +0100 Subject: [PATCH] Remove unnecessary simulation steps from Justfile --- Justfile | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/Justfile b/Justfile index ae3a154..128791f 100644 --- a/Justfile +++ b/Justfile @@ -1,15 +1,4 @@ BIN := "target/release/git-ai" -simulation: - @rm -rf /tmp/git-ai - @mkdir /tmp/git-ai - @cd /tmp/git-ai - @git init - @echo "Hello World" > README.md - @git add README.md - @git commit -m "Initial commit" - @echo "Hello World!" >> README.md - @git add README.md - @$BIN install - @git commit --no-edit - @rm -rf /tmp/git-ai +github-actions: + act --container-architecture linux/amd64 \ No newline at end of file