libbf 0.1.3

Brainfuck-like language library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
name: cache_cargo
description: caching .cargo directory
runs:
  using: composite
  steps:
    - name: Cache cargo registry
      uses: actions/cache@v2
      with:
        path: |
          ~/.cargo/bin/
          ~/.cargo/registry/index/
          ~/.cargo/registry/cache/
          ~/.cargo/git/db/
          target/
        key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
        restore-keys: ${{ runner.os }}-cargo-