diff --git a/.forgejo/workflows/test.yml b/.forgejo/workflows/test.yml index 22e29d2..30acc7f 100644 --- a/.forgejo/workflows/test.yml +++ b/.forgejo/workflows/test.yml @@ -16,15 +16,17 @@ jobs: - name: install packages and prepare source run: | pacman -Sy wget base-devel --noconfirm - wget https://www.nano-editor.org/dist/v8/nano-8.6.tar.xz - tar -xvf nano-8.6.tar.xz + wget https://www.nano-editor.org/dist/v8/nano-8.7.1.tar.xz + tar -xvf nano-8.7.1.tar.xz - name: compile nano run: | - cd nano-8.6 - ./configure --prefix=/usr \ + cd nano-8.7.1 + ./configure --prefix=/usr \ --sysconfdir=/etc \ - --enable-utf8 + --enable-color \ + --enable-nanorc \ + --enable-multibuffer make -j$(nproc) make install