Skip to content

Commit

Permalink
Attempt to run on macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
StevenMaude committed Apr 30, 2024
1 parent aa5acaa commit 66e91c2
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .github/workflows/test_devcontainers.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,24 @@ on:

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout (GitHub)
uses: actions/checkout@v4

- name: Setup macOS Docker
if: runner.os == 'macos'
run: |
brew install docker
colima start
- name: Setup macOS Docker Buildx
if: runner.os == 'macos'
uses: docker/setup-buildx-action@v3

- name: Build and run dev container task
uses: devcontainers/[email protected]
with:
Expand Down

0 comments on commit 66e91c2

Please sign in to comment.