2024-08-20 08:23:13 +00:00
|
|
|
name: Cargo Build & Test
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
can-publish:
|
|
|
|
container: git.kjan.de/actions/rust-node
|
|
|
|
name: Test publish
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v4
|
2024-08-20 08:24:46 +00:00
|
|
|
- name: ⚡ Cache
|
|
|
|
uses: https://git.kjan.de/actions/cache@v4
|
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
~/.cargo/registry
|
|
|
|
~/.cargo/git
|
|
|
|
target/release/deps
|
|
|
|
target/release/build
|
|
|
|
target
|
|
|
|
key: ${{ runner.os }}-cargo-${{ hashFiles('Cargo.lock') }}-loadstar
|
2024-08-20 08:23:13 +00:00
|
|
|
- run: cargo publish -n
|
|
|
|
|
|
|
|
|