Skip to content

Commit 2b940a2

Browse files
authored
A prototype for Github Actions workflow #163
1 parent ad0b473 commit 2b940a2

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

.github/workflows/docker-image.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Verify branch
2+
on:
3+
push
4+
jobs:
5+
container-test-job:
6+
runs-on: ubuntu-latest
7+
container:
8+
image: basilevs/ubuntu-rcptt:3.7.1
9+
env:
10+
DISPLAY: :1
11+
ports:
12+
- 80
13+
volumes:
14+
- my_docker_volume:/volume_mount
15+
options: --cpus 1
16+
steps:
17+
- name: Build
18+
run: ./build.sh

0 commit comments

Comments
 (0)