From 23d872266f123981c5f575a876f1187a03db8766 Mon Sep 17 00:00:00 2001 From: moson-mo Date: Sun, 28 Nov 2021 21:18:49 +0100 Subject: [PATCH 1/2] add .desktop file for display managers --- assets/worm.desktop | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 assets/worm.desktop diff --git a/assets/worm.desktop b/assets/worm.desktop new file mode 100644 index 0000000..338b461 --- /dev/null +++ b/assets/worm.desktop @@ -0,0 +1,6 @@ +[Desktop Entry] +Name=Worm +Comment=A floating, tag-based window manager written in Nim +Exec=worm +DesktopNames=Worm +Type=Application From 44a899c4ac1ca9f04fd04789043a6933cbf99787 Mon Sep 17 00:00:00 2001 From: moson-mo Date: Sun, 28 Nov 2021 21:29:55 +0100 Subject: [PATCH 2/2] build with different nim versions --- .github/workflows/build.yml | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index fdf7257..f1c71c3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -4,12 +4,15 @@ on: [push, pull_request] jobs: build: - runs-on: ubuntu-latest - + strategy: + matrix: + nim: [ '1.4.8', 'stable', 'devel' ] + name: Nim ${{ matrix.nim }} worm build steps: - - uses: actions/checkout@v2 - - uses: jiro4989/setup-nim-action@v1 - with: - nim-version: 'stable' - - run: nimble -y build -d:release --gc:arc + - uses: actions/checkout@v2 + - name: Setup nim + uses: jiro4989/setup-nim-action@v1 + with: + nim-version: ${{ matrix.nim }} + - run: nimble -y build -d:release --gc:arc