feat: Enable redacting timestamps from insta
snapshots (#532)
#704
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
# A separate workflow to check semver compatibility. This is in a separate workflow | |
# to avoid semver check failures (which will always happen when we're intentionally working on a | |
# new set of breaking changes) from making it look like our CI checks are failing. | |
name: Semver | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
check_semver: | |
name: Check Semver | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: Swatinem/rust-cache@v2 | |
- name: Check semver | |
uses: obi1kenobi/cargo-semver-checks-action@v2 |