Skip to content

chore: pin ape version. #797

chore: pin ape version.

chore: pin ape version. #797

Workflow file for this run

name: CI
on:
push:
pull_request:
types: [opened]
jobs:
chains_matrix:
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.experimental }}
strategy:
matrix:
chain: [optimism, base]
experimental: [false]
include:
- chain: mode
experimental: true
- chain: lisk
experimental: true
- chain: fraxtal
experimental: true
- chain: metall2
experimental: true
steps:
- uses: actions/checkout@master
- name: Builds the Docker image
run: docker build ./ -t velodrome/sugar
- name: Runs code QA and tests
run: docker run --rm --env-file=deployments/${{ matrix.chain }}.env -w /app -t velodrome/sugar sh -c 'python -m black . && ape test --network ${{ matrix.chain }}:mainnet:node --disable-isolation'