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 ce25178
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/test_devcontainers.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,19 @@ 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
- name: Build and run dev container task
uses: devcontainers/[email protected]
with:
Expand Down

0 comments on commit ce25178

Please sign in to comment.