Merge pull request #71 from skalenetwork/add-monitoring #179
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: Test | |
on: [push, pull_request] | |
jobs: | |
test_proxy: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [3.7] | |
env: | |
ETH_PRIVATE_KEY: ${{ secrets.ETH_PRIVATE_KEY }} | |
ENDPOINT: ${{ secrets.ENDPOINT }} | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
MANAGER_TAG: "1.9.3-beta.0" | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: true | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v1 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install python dependencies | |
run: bash ./scripts/install_python_dependencies_dev.sh | |
- name: Lint with flake8 | |
run: flake8 . | |
# - name: Deploy manager contracts | |
# run: | | |
# bash ./helper-scripts/install_python_dependencies_dev.sh | |
# - name: Run tests | |
# run: | | |
# bash ./scripts/run_manager_tests.sh | |
# - name: Codecov | |
# run: | | |
# codecov -t $CODECOV_TOKEN |