Skip to content

Commit

Permalink
fixup! Attempting to get CI actions running on OSX.
Browse files Browse the repository at this point in the history
  • Loading branch information
krisajenkins committed Apr 18, 2024
1 parent a6d3a54 commit 5aed82a
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,15 @@ on: push
jobs:
test:
runs-on:
- ubuntu-latest
- macos-latest
steps:
- name: setup-docker
uses: docker-practice/actions-setup-docker@v1
- name: Checkout
- name: Setup docker (if required)
if: runner.os == 'macos'
run: |
brew install docker
colima start
- name: Checkout code
uses: actions/checkout@v4
- name: Build the stack
run: |
Expand Down

0 comments on commit 5aed82a

Please sign in to comment.