Skip to content

feat: Implement ID (RFC 2971) #481

feat: Implement ID (RFC 2971)

feat: Implement ID (RFC 2971) #481

Workflow file for this run

name: Check API
on:
push:
branches: [ main ]
paths:
- '**.rs'
- '**.toml'
- '.github/workflows/**'
pull_request:
branches: [ main ]
paths:
- '**.rs'
- '**.toml'
- '.github/workflows/**'
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
semver:
runs-on: ubuntu-latest
steps:
- name: Setup | Install cargo-semver-checks
run: cargo install cargo-semver-checks --locked
- name: Setup | Checkout code
uses: actions/checkout@v3
- name: Check for SemVer violations | imap-types
run: |
cd imap-types
cargo semver-checks check-release --only-explicit-features
- name: Check for SemVer violations | imap-codec
run: |
cd imap-codec
cargo semver-checks check-release --only-explicit-features