-
Notifications
You must be signed in to change notification settings - Fork 49
145 lines (124 loc) · 4.08 KB
/
Copy pathallure-python.yml
File metadata and controls
145 lines (124 loc) · 4.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
name: allure-python
on:
push:
branches-ignore:
- 'gh-pages'
paths:
- 'allure-python/**'
- '**/allure-python.yml'
jobs:
pytest:
env:
PYTEST_WORKDIR: ./${{ github.workflow }}/${{ github.workflow }}-pytest
name: Push to repo allure-python-pytest
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
persist-credentials: false
- name: Set up Python 3.x
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
working-directory: ${{ env.PYTEST_WORKDIR }}
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Check code style
working-directory: ${{ env.PYTEST_WORKDIR }}
if: always()
run: |
flake8
- name: Copy needed files
run: |
mkdir -p result
cp -r $PYTEST_WORKDIR/. ./result
mkdir -p ./result/.github/workflows
cp ${{ github.workflow }}/.github/workflows/${{ github.workflow }}-pytest.yml ./result/.github/workflows
ls -l result
- run: git init
working-directory: result
- name: Push
uses: actions-js/push@master
with:
repository: allure-examples/${{ github.workflow }}-pytest
directory: result
message: ${{ github.event.head_commit.message }}
force: true
github_token: ${{ secrets.QAMETA_TOKEN }}
behave:
env:
BEHAVE_WORKDIR: ./${{ github.workflow }}/${{ github.workflow }}-behave
name: Push to repo allure-python-behave
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
persist-credentials: false
- name: Set up Python 3.x
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
working-directory: ${{ env.BEHAVE_WORKDIR }}
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Check code style
working-directory: ${{ env.BEHAVE_WORKDIR }}
if: always()
run: |
flake8
- name: Copy needed files
run: |
mkdir -p result
cp -r $BEHAVE_WORKDIR/. ./result
mkdir -p ./result/.github/workflows
cp ${{ github.workflow }}/.github/workflows/${{ github.workflow }}-behave.yml ./result/.github/workflows
ls -l result
- run: git init
working-directory: result
- name: Push
uses: actions-js/push@master
with:
repository: allure-examples/${{ github.workflow }}-behave
directory: result
message: ${{ github.event.head_commit.message }}
force: true
github_token: ${{ secrets.QAMETA_TOKEN }}
robotframework:
env:
ROBOTFRAMEWORK_WORKDIR: ./${{ github.workflow }}/${{ github.workflow }}-robotframework
name: Push to repo allure-python-robotframework
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
persist-credentials: false
- name: Set up Python 3.x
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
working-directory: ${{ env.ROBOTFRAMEWORK_WORKDIR }}
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Copy needed files
run: |
mkdir -p result
cp -r $ROBOTFRAMEWORK_WORKDIR/. ./result
mkdir -p ./result/.github/workflows
cp ${{ github.workflow }}/.github/workflows/${{ github.workflow }}-robotframework.yml ./result/.github/workflows
ls -l result
- run: git init
working-directory: result
- name: Push
uses: actions-js/push@master
with:
repository: allure-examples/${{ github.workflow }}-robotframework
directory: result
message: ${{ github.event.head_commit.message }}
force: true
github_token: ${{ secrets.QAMETA_TOKEN }}