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