-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: comment out release ci workflow for further review
Signed-off-by: simonsan <[email protected]>
- Loading branch information
Showing
1 changed file
with
24 additions
and
23 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,29 @@ | ||
name: Check release | ||
# ! TODO: Is this reasonable? | ||
# name: Check release | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- "release-plz-**" | ||
# on: | ||
# workflow_dispatch: | ||
# push: | ||
# branches: | ||
# - "release-plz-**" | ||
|
||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | ||
cancel-in-progress: true | ||
# concurrency: | ||
# group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | ||
# cancel-in-progress: true | ||
|
||
jobs: | ||
breaking-cli: | ||
name: Check breaking CLI changes | ||
if: ${{ github.repository_owner == 'rustic-rs' }} | ||
runs-on: ubuntu-latest | ||
# jobs: | ||
# breaking-cli: | ||
# name: Check breaking CLI changes | ||
# if: ${{ github.repository_owner == 'rustic-rs' }} | ||
# runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | ||
- name: Install Rust toolchain | ||
uses: dtolnay/rust-toolchain@1482605bfc5719782e1267fd0c0cc350fe7646b8 # v1 | ||
with: | ||
toolchain: stable | ||
- uses: Swatinem/rust-cache@82a92a6e8fbeee089604da2575dc567ae9ddeaab # v2 | ||
- name: Run Cargo Test | ||
run: cargo test -F release -p rustic-rs --test completions -- --ignored | ||
# steps: | ||
# - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | ||
# - name: Install Rust toolchain | ||
# uses: dtolnay/rust-toolchain@1482605bfc5719782e1267fd0c0cc350fe7646b8 # v1 | ||
# with: | ||
# toolchain: stable | ||
# - uses: Swatinem/rust-cache@82a92a6e8fbeee089604da2575dc567ae9ddeaab # v2 | ||
# - name: Run Cargo Test | ||
# run: cargo test -F release -p rustic-rs --test completions -- --ignored |