Do parallel confirm_req #51
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Unit test for pull_blocks.py script | |
on: push | |
jobs: | |
build: | |
name: pull_blocks_unit_test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- run: pip3 install -r requirements.txt | |
- run: python3 -m unittest pull_blocks.TestPullBlocks |