Skip to content

ci: fix cargo secret check #2

ci: fix cargo secret check

ci: fix cargo secret check #2

Workflow file for this run

name: test
on:
workflow_call:
pull_request:
push:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
container:
image: rust:latest
steps:
- name: ensure node is installed for act
if: ${{ env.ACT }}
run: command -v node || (apt update && apt install -y nodejs zstd)
- uses: actions/checkout@v4
- name: Cache target dir
id: target-dir
uses: actions/cache@v4
with:
key: ${{ runner.os }}-target-dir
path: target
- name: cargo test
run: cargo test --workspace --all-features --no-fail-fast