Skip to content

Commit

Permalink
ci: test matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
heswithme committed Oct 14, 2024
1 parent 6d78641 commit cff7cd9
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@ jobs:
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
folder:
- "tests/unitary"
- "tests/integration"
- "tests/hypothesis"

steps:
- uses: actions/checkout@v4
Expand All @@ -46,8 +51,8 @@ jobs:
run: uv sync --extra=dev

# Run tests with environment variables
- name: Run Tests
- name: Run Tests in ${{ matrix.folder }}
env:
ETH_RPC_URL: ${{ secrets.ETH_RPC_URL }}
ETHERSCAN_API_KEY: ${{ secrets.ETHERSCAN_API_KEY }}
run: uv run pytest -n auto
run: uv run pytest -n auto ${{ matrix.folder }}

0 comments on commit cff7cd9

Please sign in to comment.