Skip to content

Commit

Permalink
chore(ci): check features for socketioxide-redis
Browse files Browse the repository at this point in the history
  • Loading branch information
Totodore committed Jan 7, 2025
1 parent 7f4519a commit 8f6ddf6
Showing 1 changed file with 18 additions and 2 deletions.
20 changes: 18 additions & 2 deletions .github/workflows/github-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ jobs:
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}

- name: check --feature-powerset
run: cargo hack check --feature-powerset --no-dev-deps -p socketioxide -p engineioxide
run: cargo hack check --feature-powerset --no-dev-deps -p socketioxide -p engineioxide -p socketioxide-redis

examples:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -293,7 +293,7 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: 22
- run: cd e2e/adapter && npm install
- run: cd e2e/adapter && npm install && npm install ts-node --location=global
- name: Install deps & run tests
run: |
PARSER=$(echo ${{ matrix.socketio-version }} | cut -d'-' -f2 -s)
Expand All @@ -303,3 +303,19 @@ jobs:
- name: Server output
if: always()
run: cat *.log
all_passed:
runs-on: ubuntu-latest
needs:
[
adapter,
feature_set,
format,
udeps,
msrv,
examples,
doctest,
rust-clippy-analyze,
]
steps:
- name: All passed
run: echo "All tests passed"

0 comments on commit 8f6ddf6

Please sign in to comment.