Skip to content

Commit 26898ea

Browse files
committed
Add Docker action
1 parent e5af3c1 commit 26898ea

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/Docker.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: Docker
3+
4+
on: workflow_dispatch
5+
6+
jobs:
7+
build:
8+
runs-on: macos-latest
9+
timeout-minutes: 10
10+
steps:
11+
12+
- name: Checkout Repository
13+
uses: actions/checkout@v2
14+
15+
- name: Setup macOS
16+
shell: bash
17+
run: |
18+
brew install docker
19+
docker --version
20+
docker compose --version

0 commit comments

Comments
 (0)