Skip to content

Commit

Permalink
Use colima
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonbosco committed Jan 31, 2024
1 parent f38bb41 commit 15178ae
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,23 @@
name: Build and Test

name: tests
on: [push, pull_request]

# Cancel previous running if a new push is made
# Source: https://stackoverflow.com/a/72408109/123545
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

jobs:
test:
runs-on: macos-11
runs-on: macos-latest
steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Install Docker
- name: Install and start dependencies
run: |
brew install docker
brew install docker colima
colima start
- name: Run Typesense
run: |
Expand Down

0 comments on commit 15178ae

Please sign in to comment.