Skip to content

[Asset-39] Update MATIC to POL (#44) #100

[Asset-39] Update MATIC to POL (#44)

[Asset-39] Update MATIC to POL (#44) #100

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.12
uses: actions/setup-python@v2
with:
python-version: "3.12"
- name: Set up requirements for simple test
if: github.event_name == 'pull_request'
run: pip install -e ".[test_simple]"
- name: Test without rpc using test
if: github.event_name == 'pull_request'
run: pytest -l --skip-rpc-using-test --skip-image-test --ignore=tests/additional/test_file.py
- name: Set up requirements
if: github.event_name == 'push'
run: pip install -e ".[test]"
- name: Test with rpc using test
if: github.event_name == 'push'
run: pytest -l