Skip to content

Commit 93e1c02

Browse files
Activate GitHub Actions (ddev#2622)
1 parent f6f475b commit 93e1c02

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/activate.yml

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: DDEV GH Actions activation
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
9+
env:
10+
BUILDKIT_PROGRESS: plain
11+
DOCKER_CLI_EXPERIMENTAL: enabled
12+
13+
jobs:
14+
15+
container-tests:
16+
name: Container tests - ${{ matrix.os }}
17+
runs-on: ${{ matrix.os }}
18+
19+
strategy:
20+
matrix:
21+
os: [ubuntu-latest, macos-latest]
22+
23+
steps:
24+
- uses: actions/checkout@v2
25+
26+
- name: Hello world!
27+
run: echo "Hello world!"

0 commit comments

Comments
 (0)