add wtxid to mempool rejects, bump outdated node #247
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: build | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.11' | |
- name: Pull test container | |
run: docker pull docker.io/jamesob/bmon:test-latest | |
- name: create config | |
run: | | |
pip install .[tests] | |
pip install ./infra | |
bmon-config | |
- name: flake8 + pytest | |
run: | | |
./dev test | |
# - name: mypy | |
# run: | | |
# ./dev mypy |