Skip to content

Commit

Permalink
Test devcontainer in Windows
Browse files Browse the repository at this point in the history
macOS isn't easily possible, because of the GitHub Actions runner for
macOS not having Docker available. This in turn is due to Docker
licensing issues.
  • Loading branch information
StevenMaude committed Apr 30, 2024
1 parent 9bfb3f2 commit 84f6d2d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/test_devcontainers.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@ on:

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

0 comments on commit 84f6d2d

Please sign in to comment.