Skip to content

Commit

Permalink
checkout code
Browse files Browse the repository at this point in the history
  • Loading branch information
bdemann committed Aug 29, 2024
1 parent eb9197e commit b4db7ca
Showing 1 changed file with 12 additions and 10 deletions.
22 changes: 12 additions & 10 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,23 +23,25 @@ jobs:
outputs:
all_tests: ${{ steps.get_all_tests.outputs.all_tests }}
steps:
- uses: actions/checkout@v4
- name: Generate Tests
id: get_all_tests
uses: ./.github/actions/generate_tests
with:
directories: |
./examples
./tests
exclude_dirs: ${{ env.IS_FEATURE == 'true' && format('
./examples/basic_bitcoin
./examples/bitcoin_psbt
./examples/ckbtc
./tests/end_to_end/http_server/ethers_base
./tests/end_to_end/http_server/http_outcall_fetch
./tests/end_to_end/http_server/ic_evm_rpc
./tests/property/candid_rpc/class_api/stable_b_tree_map
./tests/property/candid_rpc/functional_api/stable_b_tree_map
') || '' }}
exclude_dirs: |
${{ env.IS_FEATURE == 'true' && format('
./examples/basic_bitcoin
./examples/bitcoin_psbt
./examples/ckbtc
./tests/end_to_end/http_server/ethers_base
./tests/end_to_end/http_server/http_outcall_fetch
./tests/end_to_end/http_server/ic_evm_rpc
./tests/property/candid_rpc/class_api/stable_b_tree_map
./tests/property/candid_rpc/functional_api/stable_b_tree_map
') || '' }}
determine-should-run-tests:
name: Determine If Tests Should Run
Expand Down

0 comments on commit b4db7ca

Please sign in to comment.