Skip to content

Commit c4d25d0

Browse files
committed
Adding initial workflow version for GitHub Actions [skip ci]
1 parent 8d65353 commit c4d25d0

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Build & test
2+
3+
on:
4+
push:
5+
branches:
6+
selenium-4-alpha
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-18.04
11+
steps:
12+
- name: Checkout repo
13+
uses: actions/checkout@v2
14+
- name: Output Docker info
15+
run: docker info
16+
- name: Build Docker images
17+
run: make all

0 commit comments

Comments
 (0)