Merge pull request #810 from tellor-io/release-prep #1846
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: CI | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: ["main"] | |
workflow_dispatch: | |
jobs: | |
tests: | |
name: "Python ${{ matrix.python-version }}" | |
runs-on: "ubuntu-latest" | |
env: | |
USING_COVERAGE: '3.9' | |
NODE_URL: ${{ secrets.TEST_NODE_URL }} | |
PRIVATE_KEY: ${{ secrets.TEST_PRIVATE_KEY }} | |
TEST_SECRET: ${{ secrets.TEST_SECRET }} | |
RAPID_KEY: ${{ secrets.TEST_RAPID_KEY }} | |
ANYBLOCK_KEY: ${{ secrets.TEST_ANYBLOCK_KEY }} | |
INFURA_API_KEY: ${{ secrets.INFURA_API_KEY }} | |
strategy: | |
matrix: | |
python-version: ["3.9"] | |
steps: | |
- uses: "actions/checkout@v2" | |
- uses: "actions/setup-python@v2" | |
with: | |
python-version: "${{ matrix.python-version }}" | |
- name: "Install dependencies" | |
run: | | |
apt-get update && apt-get install -y npm | |
npm install -g ganache-cli | |
python -m pip install --upgrade pip | |
python -m pip install --upgrade tox tox-gh-actions | |
- name: "Run tox targets for ${{ matrix.python-version }}" | |
run: | |
tox -e py39 | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v2 |