From 7cf7d041140ba5283d3bf849dd8bfb5137b35f9f Mon Sep 17 00:00:00 2001 From: maximkrouk Date: Sat, 16 Dec 2023 02:42:29 +0100 Subject: [PATCH] feat(CI): Update script --- .github/workflows/test-macos.yml | 2 +- Makefile | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 Makefile diff --git a/.github/workflows/test-macos.yml b/.github/workflows/test-macos.yml index 5e49ddc..9276fd5 100644 --- a/.github/workflows/test-macos.yml +++ b/.github/workflows/test-macos.yml @@ -14,4 +14,4 @@ jobs: - name: Checkout uses: actions/checkout@v3 - name: Test - run: swift test + run: make test diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..781fc7e --- /dev/null +++ b/Makefile @@ -0,0 +1,2 @@ +test: + @swift test