2024-08-20 10:02:07 +00:00
|
|
|
name: Cargo Build & Test
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
can-publish:
|
2024-09-04 06:04:31 +00:00
|
|
|
container: git.kjan.de/actions/rust-node@sha256:49fb2dad7814507334a38ea36ec2852a552cebc5b421ec22295d8a01421cd435
|
2024-08-20 10:02:07 +00:00
|
|
|
name: Test publish
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2024-10-07 18:01:51 +00:00
|
|
|
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4
|
2024-08-20 10:02:07 +00:00
|
|
|
- name: ⚡ Cache
|
2024-09-04 06:04:31 +00:00
|
|
|
uses: https://git.kjan.de/actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4
|
2024-08-20 10:02:07 +00:00
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
~/.cargo/registry
|
|
|
|
~/.cargo/git
|
|
|
|
target/release/deps
|
|
|
|
target/release/build
|
|
|
|
target
|
|
|
|
key: ${{ runner.os }}-cargo-${{ hashFiles('Cargo.lock') }}-loadstar
|
|
|
|
- run: cargo login ${{ secrets.CRATES_IO_TOKEN }}
|
|
|
|
- run: cargo publish
|