Skip to content

Commit

Permalink
chore: fix the cf worker feature name
Browse files Browse the repository at this point in the history
  • Loading branch information
Kilerd committed Jan 26, 2025
1 parent 1c10635 commit 749d9c7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
uses: Swatinem/rust-cache@v2

- name: Run tests
run: cargo test --package gotcha --no-default-features --features "cloudflare-worker ${{ matrix.features }}"
run: cargo test --package gotcha --no-default-features --features "cloudflare_worker ${{ matrix.features }}"

test:
name: Test
Expand Down
2 changes: 1 addition & 1 deletion test-feature-matrix.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def generate_combinations(features):

if __name__ == "__main__":
features = load_features()
features = [feature for feature in features if feature not in ["cloudflare-worker", "http1"]]
features = [feature for feature in features if feature not in ["cloudflare_worker", "http1"]]

if len(sys.argv) > 1 and sys.argv[1] == "echo":
combinations = generate_combinations(features)
Expand Down

0 comments on commit 749d9c7

Please sign in to comment.