From ee5740c21c67520de0ab82ac198a21ccb05a7c50 Mon Sep 17 00:00:00 2001 From: kramo <93832451+kra-mo@users.noreply.github.com> Date: Sun, 2 Jul 2023 14:46:37 +0200 Subject: [PATCH] Test Actions --- .github/workflows/ci.yml | 4 +++- src/main.py | 2 ++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0988271..c7eca48 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -46,7 +46,9 @@ jobs: - name: Test shell: msys2 {0} - run: timeout 2 cartridges; [ "$?" -eq "124" ] && exit 0 + run: | + set +e + timeout 2 cartridges; [ "$?" -eq "124" ] - name: Inno Setup run: iscc ".\_build\Cartridges.iss" diff --git a/src/main.py b/src/main.py index d0afd3e..1b18823 100644 --- a/src/main.py +++ b/src/main.py @@ -23,6 +23,8 @@ import sys import gi +import non_existent_module + gi.require_version("Gtk", "4.0") gi.require_version("Adw", "1")