mirror of
https://github.com/obi1kenobi/cargo-semver-checks-action.git
synced 2024-11-23 00:19:32 +01:00
19 lines
715 B
YAML
19 lines
715 B
YAML
name: Setup test workspace
|
|
runs:
|
|
using: 'composite'
|
|
steps:
|
|
- name: Checkout the ref-slice fork
|
|
uses: actions/checkout@v3
|
|
with:
|
|
repository: mgr0dzicki/cargo-semver-action-ref-slice
|
|
fetch-depth: 0
|
|
persist-credentials: true
|
|
path: ref_slice
|
|
- name: Create dummy crate
|
|
# This crate does not have a matching baseline on crates.io, so any try
|
|
# of checking it should make cargo-semver-checks fail.
|
|
run: cargo new cargo-semver-action-dummy --lib
|
|
shell: bash
|
|
- name: Create workspace Cargo.toml
|
|
run: echo -e "[workspace]\nmembers=['ref_slice','cargo-semver-action-dummy']" > Cargo.toml
|
|
shell: bash
|