feat(ci): add cargo-semver-checks workflows (#1003) #256
Workflow file for this run
This file contains hidden or 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: Check Lambda Extension | |
on: | |
push: | |
paths: | |
- 'lambda-runtime-api-client/**' | |
- 'lambda-extension/**' | |
- 'lambda-runtime/**' | |
- 'Cargo.toml' | |
pull_request: | |
paths: | |
- 'lambda-runtime-api-client/**' | |
- 'lambda-extension/**' | |
- 'lambda-runtime/**' | |
- 'Cargo.toml' | |
jobs: | |
build-runtime: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
toolchain: | |
- "1.81.0" # Current MSRV | |
- stable | |
env: | |
RUST_BACKTRACE: 1 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build Runtime API Client | |
uses: ./.github/actions/rust-build | |
with: | |
package: lambda_runtime_api_client | |
toolchain: ${{ matrix.toolchain}} | |
- name: Build Extensions runtime | |
uses: ./.github/actions/rust-build | |
with: | |
package: lambda-extension | |
toolchain: ${{ matrix.toolchain}} | |
semver: | |
name: semver | |
needs: build-runtime | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Check `lambda-extension` semver with only default features | |
uses: obi1kenobi/cargo-semver-checks-action@v2 | |
with: | |
rust-toolchain: stable | |
package: lambda-extension | |
feature-group: default-features | |
- name: Check `lambda-extension` semver with all features | |
uses: obi1kenobi/cargo-semver-checks-action@v2 | |
with: | |
rust-toolchain: stable | |
package: lambda-extension | |
feature-group: all-features |