Skip to content

Commit

Permalink
feat(ci): update and rename tox workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
spencer-tb committed Mar 4, 2024
1 parent cfd0bbc commit c8b7ff5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 13 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/fixtures.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,11 @@ jobs:
- name: 'fixtures'
evm-type: 'main'
fill-params: ''
python: '${{ env.latest-python-version }}'
python: '3.12'
- name: 'fixtures_develop'
evm-type: 'develop'
fill-params: '--until=${{ env.development-fork }}'
python: '${{ env.latest-python-version }}'
env:
latest-python-version: '3.12'
development-fork: 'Cancun'
fill-params: '--until=Cancun'
python: '3.12'
steps:
- uses: actions/checkout@v3
with:
Expand Down
11 changes: 4 additions & 7 deletions .github/workflows/tox.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,22 +11,19 @@ jobs:
- os: ubuntu-latest
python: '3.10'
evm-type: 'main'
tox-cmd: '${{ env.tox-main }}'
tox-cmd: 'tox run-parallel --parallel-no-spinner'
- os: ubuntu-latest
python: '3.11'
evm-type: 'develop'
tox-cmd: '${{ env.tox-develop }}'
tox-cmd: 'tox -e tests-develop'
- os: ubuntu-latest
python: '3.12'
evm-type: 'main'
tox-cmd: '${{ env.tox-main }}'
tox-cmd: 'tox run-parallel --parallel-no-spinner'
- os: macos-latest
python: '3.11'
evm-type: 'main'
tox-cmd: '${{ env.tox-main }}'
env:
tox-main: 'tox run-parallel --parallel-no-spinner'
tox-develop: 'tox -e tests-develop'
tox-cmd: 'tox run-parallel --parallel-no-spinner'
steps:
- uses: actions/checkout@v3
with:
Expand Down

0 comments on commit c8b7ff5

Please sign in to comment.