2023-04-20 00:20:00 +00:00
|
|
|
name: Fixturenet-Eth-Test
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2023-04-20 00:22:18 +00:00
|
|
|
branches: 'ci-test'
|
2023-04-20 00:20:00 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
name: "Run an Ethereum fixturenet test"
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: "Clone project repository"
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
- name: "Install Python"
|
2023-07-18 20:01:07 +00:00
|
|
|
uses: actions/setup-python@v4
|
2023-04-20 00:20:00 +00:00
|
|
|
with:
|
|
|
|
python-version: '3.8'
|
|
|
|
- name: "Print Python version"
|
|
|
|
run: python3 --version
|
|
|
|
- name: "Install shiv"
|
|
|
|
run: pip install shiv
|
|
|
|
- name: "Generate build version file"
|
|
|
|
run: ./scripts/create_build_tag_file.sh
|
|
|
|
- name: "Build local shiv package"
|
|
|
|
run: ./scripts/build_shiv_package.sh
|
|
|
|
- name: "Run fixturenet-eth tests"
|
|
|
|
run: ./tests/fixturenet-eth/run-test.sh
|