|
6 | 6 | - master
|
7 | 7 |
|
8 | 8 | jobs:
|
9 |
| - test: |
10 |
| - runs-on: ubuntu-latest |
11 |
| - strategy: |
12 |
| - max-parallel: 4 |
13 |
| - matrix: |
14 |
| - python-version: [3.6, 3.7, 3.8] |
15 |
| - |
16 |
| - steps: |
17 |
| - - name: Install secp256k1 |
18 |
| - run: sudo apt-get install libsecp256k1-0 libsecp256k1-dev |
19 |
| - - uses: actions/checkout@v1 |
20 |
| - - name: Set up Python ${{ matrix.python-version }} |
21 |
| - uses: actions/setup-python@v1 |
22 |
| - with: |
23 |
| - python-version: ${{ matrix.python-version }} |
24 |
| - - name: Install dependencies |
25 |
| - run: | |
26 |
| - python -m pip install --upgrade pip |
27 |
| - pip install tox tox-gh-actions |
28 |
| - - name: Test with tox |
29 |
| - run: tox |
| 9 | +# test: |
| 10 | +# runs-on: ubuntu-latest |
| 11 | +# strategy: |
| 12 | +# max-parallel: 4 |
| 13 | +# matrix: |
| 14 | +# python-version: [3.6, 3.7, 3.8] |
| 15 | +# |
| 16 | +# steps: |
| 17 | +# - name: Install secp256k1 |
| 18 | +# run: sudo apt-get install libsecp256k1-0 libsecp256k1-dev |
| 19 | +# - uses: actions/checkout@v1 |
| 20 | +# - name: Set up Python ${{ matrix.python-version }} |
| 21 | +# uses: actions/setup-python@v1 |
| 22 | +# with: |
| 23 | +# python-version: ${{ matrix.python-version }} |
| 24 | +# - name: Install dependencies |
| 25 | +# run: | |
| 26 | +# python -m pip install --upgrade pip |
| 27 | +# pip install tox tox-gh-actions |
| 28 | +# - name: Test with tox |
| 29 | +# run: tox |
30 | 30 |
|
31 | 31 | release:
|
32 | 32 | name: Semantic Release
|
33 | 33 | runs-on: ubuntu-latest
|
34 | 34 | concurrency: push
|
35 |
| - needs: |
36 |
| - - test |
| 35 | + #needs: |
| 36 | + # - test |
37 | 37 | steps:
|
38 | 38 | - uses: actions/checkout@v2
|
39 | 39 | with:
|
40 | 40 | fetch-depth: 0
|
41 |
| - ref: ${{ needs.beautify.outputs.new_sha }} |
42 |
| - |
43 |
| - - name: Fetch master |
44 |
| - run: git fetch --prune origin +refs/heads/master:refs/remotes/origin/master |
| 41 | + token: ${{ secrets.PAT }} |
45 | 42 |
|
46 | 43 | - name: Python Semantic Release
|
47 | 44 | uses: relekang/python-semantic-release@master
|
|
0 commit comments