Skip to content

Commit

Permalink
Add CI testing for no default features and all features
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnnyMorganz committed Nov 17, 2024
1 parent b928a2a commit 0b83e89
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,13 @@ jobs:
- name: Test (default)
run: cargo test

test_no_default_features:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Test (default)
run: cargo test --no-default-features

test_luau:
runs-on: ubuntu-latest
steps:
Expand Down Expand Up @@ -49,6 +56,13 @@ jobs:
- name: Test (LuaJIT)
run: cargo test --features luajit

test_all_features:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Test (all features)
run: cargo test --all_features

test_wasm:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 0b83e89

Please sign in to comment.