Skip to content

chore: update sample data to only reference Product Footprints which … #126

chore: update sample data to only reference Product Footprints which …

chore: update sample data to only reference Product Footprints which … #126

Workflow file for this run

on: [push]
name: CI
jobs:
build_and_test:
name: Rust project
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Cache target
uses: actions/cache@v2
env:
cache-name: cache-default-target-and-lockfile
with:
path: |
endpoint/target
endpoint/Cargo.lock
~/.rustup
key: ${{ env.cache-name }}-${{ hashFiles('**/Cargo.toml') }}
- name: CI
env:
PRIV_KEY: ${{ secrets.PRIV_KEY }}
working-directory: ./endpoint
run: |
cargo build
cargo test
cargo clippy -- -Dwarnings