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 8202191
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/test_devcontainers.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,21 @@ 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 docker-buildx
mkdir "~/.docker"
echo '"cliPluginsExtraDirs": ["/opt/homebrew/lib/docker/cli-plugins"]' > "~/.docker/config.json"
- name: Build and run dev container task
uses: devcontainers/[email protected]
with:
Expand Down

0 comments on commit 8202191

Please sign in to comment.