Skip to content

Commit

Permalink
CI
Browse files Browse the repository at this point in the history
  • Loading branch information
kornelski committed Jul 6, 2024
1 parent 8db2de7 commit 290a9fa
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: CI

on: [push, pull_request]

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install latest stable Rust
uses: dtolnay/rust-toolchain@master
- name: Test no default features
run: cargo test --no-default-features
- name: Test all features
run: cargo test --all-features
- name: Check all feature combinations
uses: taiki-e/install-action@cargo-hack
run: cargo hack check --feature-powerset --no-dev-deps --exclude-features unstable-experimental --exclude-all-features --exclude-no-default-features

0 comments on commit 290a9fa

Please sign in to comment.