Bump deno_semver from 0.5.16 to 0.6.0 #297
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
# Run tests with no features | |
- name: Run barebones tests | |
run: cargo test --no-default-features --lib | |
# Run default feature tests | |
- name: Run tests | |
run: cargo test --verbose --lib | |
# Run tests with just web feature | |
- name: Run web tests | |
run: cargo test --features "web" --lib | |
# Run tests with all features | |
- name: Run complete tests | |
run: cargo test --all-features --lib |