-
Notifications
You must be signed in to change notification settings - Fork 10
45 lines (39 loc) · 1.17 KB
/
py39.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
---
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