Skip to content

Commit 1aba53a

Browse files
committed
feat(test): run docker on github actions
1 parent d2dcf7b commit 1aba53a

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/ci-in-docker.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: "Docker"
2+
on:
3+
push:
4+
branches:
5+
- master
6+
pull_request:
7+
8+
jobs:
9+
tests:
10+
name: "Symfony1 Tests"
11+
runs-on: "ubuntu-latest"
12+
steps:
13+
- name: Checkout
14+
uses: actions/checkout@v3
15+
16+
- name: Run Tests
17+
run: tests/bin/test

0 commit comments

Comments
 (0)