|
1 | 1 | ---
|
2 |
| - name: CI |
3 |
| - |
4 |
| - on: |
5 |
| - push: |
6 |
| - branches: [main] |
7 |
| - pull_request: |
8 |
| - branches: [main] |
9 |
| - workflow_dispatch: |
10 |
| - |
11 |
| - env: |
12 |
| - FORCE_COLOR: "1" # Make tools pretty. |
13 |
| - SETUPTOOLS_SCM_PRETEND_VERSION: "1.0" # avoid warnings about shallow checkout |
14 |
| - |
15 |
| - jobs: |
16 |
| - check-argon2-cffi-bindings: |
17 |
| - name: Build & verify the argon2-cffi-bindings package. |
18 |
| - runs-on: ubuntu-latest |
19 |
| - |
20 |
| - steps: |
21 |
| - - uses: actions/checkout@v4 |
22 |
| - with: |
23 |
| - repository: hynek/argon2-cffi-bindings |
24 |
| - submodules: recursive |
25 |
| - path: hynek/argon2-cffi-bindings |
26 |
| - |
27 |
| - - uses: actions/checkout@v4 |
28 |
| - with: |
29 |
| - path: action |
30 |
| - |
31 |
| - - uses: ./action |
32 |
| - id: baipp |
33 |
| - with: |
34 |
| - path: hynek/argon2-cffi-bindings |
35 |
| - skip-wheel: 'true' |
36 |
| - |
37 |
| - check-structlog: |
38 |
| - name: Build & verify the structlog package. |
39 |
| - runs-on: ubuntu-latest |
40 |
| - |
41 |
| - steps: |
42 |
| - - uses: actions/checkout@v4 |
43 |
| - with: |
44 |
| - repository: hynek/structlog |
45 |
| - path: structlog |
46 |
| - |
47 |
| - - uses: actions/checkout@v4 |
48 |
| - with: |
49 |
| - path: action |
50 |
| - |
51 |
| - - uses: ./action |
52 |
| - id: baipp |
53 |
| - with: |
54 |
| - path: structlog |
55 |
| - upload-name-suffix: "-structlog" |
56 |
| - |
57 |
| - - run: echo Packages can be found at ${{ steps.baipp.outputs.dist }} |
| 2 | +name: CI |
| 3 | + |
| 4 | +on: |
| 5 | + push: |
| 6 | + branches: [main] |
| 7 | + pull_request: |
| 8 | + workflow_dispatch: |
| 9 | + |
| 10 | +env: |
| 11 | + FORCE_COLOR: "1" # Make tools pretty. |
| 12 | + SETUPTOOLS_SCM_PRETEND_VERSION: "1.0" # avoid warnings about shallow checkout |
| 13 | + |
| 14 | +jobs: |
| 15 | + check-argon2-cffi-bindings: |
| 16 | + name: Build & verify the argon2-cffi-bindings package. |
| 17 | + runs-on: ubuntu-latest |
| 18 | + |
| 19 | + steps: |
| 20 | + - uses: actions/checkout@v4 |
| 21 | + with: |
| 22 | + repository: hynek/argon2-cffi-bindings |
| 23 | + submodules: recursive |
| 24 | + path: hynek/argon2-cffi-bindings |
| 25 | + |
| 26 | + - uses: actions/checkout@v4 |
| 27 | + with: |
| 28 | + path: action |
| 29 | + |
| 30 | + - uses: ./action |
| 31 | + id: baipp |
| 32 | + with: |
| 33 | + path: hynek/argon2-cffi-bindings |
| 34 | + skip-wheel: 'true' |
| 35 | + |
| 36 | + check-structlog: |
| 37 | + name: Build & verify the structlog package. |
| 38 | + runs-on: ubuntu-latest |
| 39 | + |
| 40 | + steps: |
| 41 | + - uses: actions/checkout@v4 |
| 42 | + with: |
| 43 | + repository: hynek/structlog |
| 44 | + path: structlog |
| 45 | + |
| 46 | + - uses: actions/checkout@v4 |
| 47 | + with: |
| 48 | + path: action |
| 49 | + |
| 50 | + - uses: ./action |
| 51 | + id: baipp |
| 52 | + with: |
| 53 | + path: structlog |
| 54 | + upload-name-suffix: "-structlog" |
| 55 | + |
| 56 | + - run: echo Packages can be found at ${{ steps.baipp.outputs.dist }} |
0 commit comments