Skip to content

Merge branch 'unstable' into stable #2

Merge branch 'unstable' into stable

Merge branch 'unstable' into stable #2

Workflow file for this run

# Generated by Deployer 2.X
name: ci
on:
push:
branches:
- stable
- unstable
pull_request:
branches:
- unstable
env:
TERM: xterm
jobs:
ci:
name: ci
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust Toolchain
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
components: clippy
target: x86_64-unknown-linux-gnu
toolchain: nightly
- name: Restore cache
id: cache-restore
uses: actions/cache/restore@v4
with:
path: |
Cargo.lock
examples
target
key: ${{ runner.os }}-ci
- name: Run pipeline
run: |
chmod +x .github/workflows/.pipe.ci.sh
./.github/workflows/.pipe.ci.sh
- name: Save cache
id: cache-save
uses: actions/cache/save@v4
with:
path: |
Cargo.lock
examples
target
key: ${{ steps.cache-restore.outputs.cache-primary-key }}
- uses: actions/upload-artifact@v4
with:
name: ci
path: |
target/release/smart-patcher