Skip to content

Commit 15178ae

Browse files
committed
Use colima
1 parent f38bb41 commit 15178ae

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

.github/workflows/tests.yml

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,23 @@
1-
name: Build and Test
2-
1+
name: tests
32
on: [push, pull_request]
43

4+
# Cancel previous running if a new push is made
5+
# Source: https://stackoverflow.com/a/72408109/123545
6+
concurrency:
7+
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
8+
cancel-in-progress: true
9+
510
jobs:
611
test:
7-
runs-on: macos-11
12+
runs-on: macos-latest
813
steps:
914
- name: Checkout code
1015
uses: actions/checkout@v2
1116

12-
- name: Install Docker
17+
- name: Install and start dependencies
1318
run: |
14-
brew install docker
19+
brew install docker colima
20+
colima start
1521
1622
- name: Run Typesense
1723
run: |

0 commit comments

Comments
 (0)