We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f38bb41 commit 15178aeCopy full SHA for 15178ae
.github/workflows/tests.yml
@@ -1,17 +1,23 @@
1
-name: Build and Test
2
-
+name: tests
3
on: [push, pull_request]
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
+
10
jobs:
11
test:
- runs-on: macos-11
12
+ runs-on: macos-latest
13
steps:
14
- name: Checkout code
15
uses: actions/checkout@v2
16
- - name: Install Docker
17
+ - name: Install and start dependencies
18
run: |
- brew install docker
19
+ brew install docker colima
20
+ colima start
21
22
- name: Run Typesense
23
0 commit comments