Skip to content

feat: Add new options to rclone backend #598

feat: Add new options to rclone backend

feat: Add new options to rclone backend #598

Workflow file for this run

name: Check MSRV
on:
pull_request:
paths-ignore:
- "**/*.md"
push:
branches:
- main
paths-ignore:
- "**/*.md"
schedule:
- cron: "0 0 * * 0"
merge_group:
types: [checks_requested]
jobs:
msrv:
name: Check MSRV
runs-on: ubuntu-latest
strategy:
matrix:
crate: [rustic_core, rustic_backend]
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- name: Install cargo-hack
uses: taiki-e/install-action@3ed9916b5427bc0679b294607ea47d1d8007b53f # v2
with:
tool: cargo-hack
- name: Run Cargo Hack
run: cargo hack check --rust-version -p ${{ matrix.crate }}
result:
name: Result (MSRV)
runs-on: ubuntu-latest
needs: msrv
steps:
- name: Mark the job as successful
run: exit 0
if: success()
- name: Mark the job as unsuccessful
run: exit 1
if: "!success()"