Skip to content

ci: use create-binary-artifact action #5

ci: use create-binary-artifact action

ci: use create-binary-artifact action #5

Workflow file for this run

on:

Check failure on line 1 in .github/workflows/release-ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/release-ci.yml

Invalid workflow file

No steps defined in `steps` and no workflow called in `uses` for the following jobs: semver-check
push:
branches:
- release/*
name: Check release
jobs:
breaking:
name: Test
runs-on: ${{ matrix.job.os }}
strategy:
matrix:
rust: [stable]
job:
- os: macos-latest
- os: ubuntu-latest
- os: windows-latest
steps:
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4
- uses: actions-rs/toolchain@16499b5e05bf2e26879000db0c1d13f7e13fa3af # v1
with:
profile: minimal
toolchain: stable
override: true
- uses: Swatinem/rust-cache@e207df5d269b42b69c8bc5101da26f7d31feddb4 # v2
- uses: actions-rs/cargo@844f36862e911db73fe0815f00a4a2602c279505 # v1
with:
command: test
args: -r --all-targets --all-features --workspace -- --ignored
semver-check:
name: Check SemVer
runs-on: ubuntu-latest
needs: breaking
strategy:
matrix:
rust: [stable]
job:
- os: ubuntu-latest
- os: windows-latest
- os: macos-latest
steps:
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4
- uses: actions-rs/toolchain@16499b5e05bf2e26879000db0c1d13f7e13fa3af # v1
with:
profile: minimal
toolchain: stable
override: true
- uses: Swatinem/rust-cache@e207df5d269b42b69c8bc5101da26f7d31feddb4 # v2
- name: Check semver
uses: obi1kenobi/cargo-semver-checks-action@v2