We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f3d23a0 commit 65f44e2Copy full SHA for 65f44e2
.github/workflows/centos6.yaml
@@ -33,13 +33,21 @@ jobs:
33
steps:
34
# untars repo in docker container so git submodule update fails
35
#- uses: actions/checkout@v2
36
- - name: build & test
+ - name: install git & make
37
run: |
38
ls -l /.dockerenv
39
echo "pwd is $PWD"
40
cat /etc/*release
41
- yum install -y git make &&
+ yum install -y git make
42
+ - name: git clone
43
+ run: |
44
cd /tmp &&
- git clone https://github.com/harisekhon/devops-python-tools &&
- cd devops-python-tools &&
45
- make build test
+ git clone https://github.com/harisekhon/devops-python-tools
46
+ - name: build
47
48
+ cd /tmp/devops-python-tools &&
49
+ make
50
+ - name: test
51
52
53
+ make test
0 commit comments