diff --git a/.forgejo/workflows/test.yml b/.forgejo/workflows/test.yml index 6dbee60..2445165 100644 --- a/.forgejo/workflows/test.yml +++ b/.forgejo/workflows/test.yml @@ -1,4 +1,4 @@ -name: asciicaesar from source +name: cliper from source on: push: @@ -6,7 +6,7 @@ on: - main jobs: - run-asciicaesar: + run-cliper: runs-on: archlinux-latest container: image: archlinux:latest @@ -15,16 +15,16 @@ jobs: - name: prepare source run: | - pacman -Sy git base-devel make --noconfirm - git clone https://github.com/honakac/asciicaesar + pacman -Sy git go --noconfirm + https://github.com/honakac/CLIper - name: compiling run: | - cd asciicaesar - mkdir -p obj - make + cd go + go build -o cliper - - name: run asciicaesar + - name: run cliper run: | - cd asciicaesar - echo "Hello, World" | ./asciicaesar -s 3 -i ' ,.!?' \ No newline at end of file + cd cliper + ./cliper append -t "Meeting" -c "Discuss project timeline" + ./cliper list \ No newline at end of file