adding release script #48
Workflow file for this run
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
name: Test Suite | |
on: | |
pull_request: | |
branches: [ main ] | |
push: | |
branches: [ main ] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.number || github.event.merge_group.head_sha }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
name: Checkout repository | |
with: | |
fetch-depth: 0 | |
- name: Checkout submodule | |
run: git submodule update --init --recursive | |
- uses: actions/cache@v3 | |
name: Setup cache registry | |
with: | |
path: ~/.cargo/registry | |
key: '${{ runner.os }}-cargo-registry-${{ hashFiles(''**/Cargo.lock'') }}' | |
- uses: actions/cache@v3 | |
name: Setup cache index | |
with: | |
path: ~/.cargo/git | |
key: '${{ runner.os }}-cargo-index-${{ hashFiles(''**/Cargo.lock'') }}' | |
- uses: actions/cache@v3 | |
name: Setup cache build target | |
with: | |
path: target | |
key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }} | |
- uses: actions-rs/toolchain@v1 | |
name: Setup rust toolchain | |
with: | |
profile: minimal | |
toolchain: stable | |
override: true | |
- uses: actions-rs/cargo@v1 | |
name: Run cargo check | |
with: | |
command: check | |
- uses: actions-rs/cargo@v1 | |
name: Run cargo clippy | |
with: | |
command: clippy | |
args: -- -Dwarnings | |
- uses: actions-rs/cargo@v1 | |
name: Build in release mode | |
with: | |
command: build | |
args: --release | |
- uses: actions-rs/cargo@v1 | |
name: Run cargo test | |
with: | |
command: test | |
- name: Run dry run | |
run: | | |
./target/release/ntfs-undelete --help |