Skip to content

Commit

Permalink
Add semver check to CI (#36)
Browse files Browse the repository at this point in the history
  • Loading branch information
nyurik committed Apr 10, 2024
1 parent 2cb01c9 commit c207743
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/test.yml
Expand Up @@ -2,11 +2,11 @@ name: CI

on:
push:
branches: [main]
branches: [ main ]
pull_request:
branches: [main]
branches: [ main ]
release:
types: [published]
types: [ published ]
workflow_dispatch:

jobs:
Expand All @@ -32,3 +32,5 @@ jobs:
- run: cargo test --features s3-async-native
- run: cargo test --features s3-async-rustls
- run: cargo test
- name: Check semver
uses: obi1kenobi/cargo-semver-checks-action@v2
2 changes: 1 addition & 1 deletion Cargo.toml
Expand Up @@ -40,7 +40,7 @@ bytes = "1"
fmmap = { version = "0.3", default-features = false, optional = true }
hilbert_2d = "1"
reqwest = { version = "0.12.3", default-features = false, optional = true }
rust-s3 = { version = "0.33.0", optional = true, default-features = false, features = ["fail-on-err"] }
rust-s3 = { version = "0.33.0", optional = true, default-features = false, features = ["fail-on-err"] }
serde = { version = "1", optional = true }
serde_json = { version = "1", optional = true }
thiserror = "1"
Expand Down

0 comments on commit c207743

Please sign in to comment.