|
|
@ -10,5 +10,14 @@ jobs:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- uses: actions/cache@v2
|
|
|
|
|
|
|
|
with:
|
|
|
|
|
|
|
|
path: |
|
|
|
|
|
|
|
|
~/.cargo/registry
|
|
|
|
|
|
|
|
~/.cargo/git
|
|
|
|
|
|
|
|
target
|
|
|
|
|
|
|
|
key: cargo-${{ runner.os }}-${{ hashFiles('**/Cargo.toml') }}
|
|
|
|
|
|
|
|
restore-keys: |
|
|
|
|
|
|
|
|
cargo-${{ runner.os }}-
|
|
|
|
- name: Build
|
|
|
|
- name: Build
|
|
|
|
run: cargo build -p svg2gcode-cli
|
|
|
|
run: cargo build -p svg2gcode-cli
|
|
|
|