File tree Expand file tree Collapse file tree 1 file changed +35
-3
lines changed Expand file tree Collapse file tree 1 file changed +35
-3
lines changed Original file line number Diff line number Diff line change 1
1
name : test_build
2
2
on : [push, pull_request]
3
3
jobs :
4
- Run-Test-Build :
4
+ Test_Local-Build :
5
+ runs-on : ubuntu-latest
6
+ steps :
7
+ - uses : actions/checkout@v3
8
+ - name : Setup Python
9
+ uses : actions/setup-python@v4
10
+ with :
11
+ python-version : ' 3.x'
12
+ - name : Install dependencies
13
+ run : |
14
+ python -m pip install --upgrade pip
15
+ - name : Install ghrocker
16
+ run : |
17
+ pip install .
18
+ - name : Test local build
19
+ run : |
20
+ ghrocker --build --develop -- test/test_site
21
+ Test-Prebuilt :
5
22
runs-on : ubuntu-latest
6
23
steps :
7
24
- uses : actions/checkout@v3
18
35
- name : Test prebuilt
19
36
run : |
20
37
ghrocker --build -- test/test_site
21
- - name : Test local build
38
+
39
+ dockerfile-generation :
40
+ runs-on : ubuntu-latest
41
+ steps :
42
+ - uses : actions/checkout@v3
43
+ - name : Setup Python
44
+ uses : actions/setup-python@v4
45
+ with :
46
+ python-version : ' 3.x'
47
+ - name : Install dependencies
22
48
run : |
23
- ghrocker --build --develop -- test/test_site
49
+ python -m pip install --upgrade pip
50
+ - name : Install ghrocker
51
+ run : |
52
+ pip install .
53
+ - name : Test Generation
54
+ run : |
55
+ generate_ghrocker_dockerfile
You can’t perform that action at this time.
0 commit comments