File tree Expand file tree Collapse file tree 1 file changed +23
-23
lines changed
Expand file tree Collapse file tree 1 file changed +23
-23
lines changed Original file line number Diff line number Diff line change 66 - master
77
88jobs :
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
3030
3131 release :
3232 name : Semantic Release
3333 runs-on : ubuntu-latest
3434 concurrency : push
35- # needs:
36- # - test
35+ needs :
36+ - test
3737 steps :
3838 - uses : actions/checkout@v2
3939 with :
You can’t perform that action at this time.
0 commit comments