Skip to content

Commit d52262d

Browse files
added version check
1 parent 964a19d commit d52262d

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Run unittests
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
jobs:
8+
python34:
9+
runs-on: ubuntu-latest # Replace with desired runner
10+
container:
11+
image: python:3.4-alpine3.8
12+
ports:
13+
- 80
14+
volumes:
15+
- my_docker_volume:/volume_mount
16+
17+
steps:
18+
- name: Python version
19+
run: echo $(python3 -V)
20+
- name: pwd
21+
run: echo $(pwd)
22+
- name: ls
23+
run: echo $(ls )

0 commit comments

Comments
 (0)